Skip to content

Update Usage Profile

glue_update_usage_profile R Documentation

Update an Glue usage profile

Description

Update an Glue usage profile.

Usage

glue_update_usage_profile(Name, Description, Configuration)

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.

Value

A list with the following syntax:

list(
  Name = "string"
)

Request syntax

svc$update_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"
      )
    )
  )
)