Create Usage Profile
| glue_create_usage_profile | R Documentation | 
Creates an Glue usage profile¶
Description¶
Creates an Glue usage profile.
Usage¶
glue_create_usage_profile(Name, Description, Configuration, Tags)
Arguments¶
Name | 
[required] The name of the usage profile.  | 
Description | 
A description of the usage profile.  | 
Configuration | 
[required] A   | 
Tags | 
A list of tags applied to the usage profile.  | 
Value¶
A list with the following syntax:
list(
  Name = "string"
)
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"
  )
)