Create Usage Profile
glue_create_usage_profile | R Documentation |
Creates an Glue usage profile¶
Description¶
Creates an Glue usage profile.
Usage¶
Arguments¶
Name
[required] The name of the usage profile.
Description
A description of the usage profile.
Configuration
[required] A
ProfileConfiguration
object specifying the job and session values for the profile.Tags
A list of tags applied to the usage profile.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_usage_profile(
Name = "string",
Description = "string",
Configuration = list(
SessionConfiguration = list(
list(
DefaultValue = "string",
AllowedValues = list(
"string"
),
MinValue = "string",
MaxValue = "string"
)
),
JobConfiguration = list(
list(
DefaultValue = "string",
AllowedValues = list(
"string"
),
MinValue = "string",
MaxValue = "string"
)
)
),
Tags = list(
"string"
)
)