You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppConfig::Types::UpdateConfigurationProfileRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateConfigurationProfileRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  application_id: "Id", # required
  configuration_profile_id: "Id", # required
  name: "Name",
  description: "Description",
  retrieval_role_arn: "RoleArn",
  validators: [
    {
      type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
      content: "StringWithLengthBetween0And32768", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#application_idString

The application ID.

Returns:

  • (String)

    The application ID.

#configuration_profile_idString

The ID of the configuration profile.

Returns:

  • (String)

    The ID of the configuration profile.

#descriptionString

A description of the configuration profile.

Returns:

  • (String)

    A description of the configuration profile.

#nameString

The name of the configuration profile.

Returns:

  • (String)

    The name of the configuration profile.

#retrieval_role_arnString

The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

Returns:

  • (String)

    The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

#validatorsArray<Types::Validator>

A list of methods for validating the configuration.

Returns:

  • (Array<Types::Validator>)

    A list of methods for validating the configuration.