Class: Aws::CloudFormation::Types::SetTypeConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::SetTypeConfigurationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration ⇒ String
The configuration data for the extension, in this account and region.
-
#configuration_alias ⇒ String
An alias by which to refer to this extension configuration data.
-
#type ⇒ String
The type of extension.
-
#type_arn ⇒ String
The Amazon Resource Name (ARN) for the extension, in this account and region.
-
#type_name ⇒ String
The name of the extension.
Instance Attribute Details
#configuration ⇒ String
The configuration data for the extension, in this account and region.
The configuration data must be formatted as JSON, and validate against the schema returned in the `ConfigurationSchema` response element of [API_DescribeType](AWSCloudFormation/latest/APIReference/API_DescribeType.html). For more information, see [Defining account-level configuration data for an extension] in the *CloudFormation CLI User Guide*.
6074 6075 6076 6077 6078 6079 6080 6081 6082 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6074 class SetTypeConfigurationInput < Struct.new( :type_arn, :configuration, :configuration_alias, :type_name, :type) SENSITIVE = [] include Aws::Structure end |
#configuration_alias ⇒ String
An alias by which to refer to this extension configuration data.
Conditional: Specifying a configuration alias is required when setting a configuration for a resource type extension.
6074 6075 6076 6077 6078 6079 6080 6081 6082 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6074 class SetTypeConfigurationInput < Struct.new( :type_arn, :configuration, :configuration_alias, :type_name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of extension.
Conditional: You must specify `ConfigurationArn`, or `Type` and `TypeName`.
6074 6075 6076 6077 6078 6079 6080 6081 6082 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6074 class SetTypeConfigurationInput < Struct.new( :type_arn, :configuration, :configuration_alias, :type_name, :type) SENSITIVE = [] include Aws::Structure end |
#type_arn ⇒ String
The Amazon Resource Name (ARN) for the extension, in this account and region.
For public extensions, this will be the ARN assigned when you
- activate the type][1
-
in this account and region. For private
extensions, this will be the ARN assigned when you [register the type] in this account and region.
Do not include the extension versions suffix at the end of the ARN. You can set the configuration for an extension, but not for a specific extension version.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html [2]: docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html
6074 6075 6076 6077 6078 6079 6080 6081 6082 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6074 class SetTypeConfigurationInput < Struct.new( :type_arn, :configuration, :configuration_alias, :type_name, :type) SENSITIVE = [] include Aws::Structure end |
#type_name ⇒ String
The name of the extension.
Conditional: You must specify `ConfigurationArn`, or `Type` and `TypeName`.
6074 6075 6076 6077 6078 6079 6080 6081 6082 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6074 class SetTypeConfigurationInput < Struct.new( :type_arn, :configuration, :configuration_alias, :type_name, :type) SENSITIVE = [] include Aws::Structure end |