Class: Aws::AppConfig::Types::CreateExtensionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::CreateExtensionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appconfig/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Hash<String,Array<Types::Action>>
The actions defined in the extension.
-
#description ⇒ String
Information about the extension.
-
#latest_version_number ⇒ Integer
You can omit this field when you create an extension.
-
#name ⇒ String
A name for the extension.
-
#parameters ⇒ Hash<String,Types::Parameter>
The parameters accepted by the extension.
-
#tags ⇒ Hash<String,String>
Adds one or more tags for the specified extension.
Instance Attribute Details
#actions ⇒ Hash<String,Array<Types::Action>>
The actions defined in the extension.
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/aws-sdk-appconfig/types.rb', line 756 class CreateExtensionRequest < Struct.new( :name, :description, :actions, :parameters, :tags, :latest_version_number) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
Information about the extension.
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/aws-sdk-appconfig/types.rb', line 756 class CreateExtensionRequest < Struct.new( :name, :description, :actions, :parameters, :tags, :latest_version_number) SENSITIVE = [] include Aws::Structure end |
#latest_version_number ⇒ Integer
You can omit this field when you create an extension. When you create a new version, specify the most recent current version number. For example, you create version 3, enter 2 for this field.
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/aws-sdk-appconfig/types.rb', line 756 class CreateExtensionRequest < Struct.new( :name, :description, :actions, :parameters, :tags, :latest_version_number) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/aws-sdk-appconfig/types.rb', line 756 class CreateExtensionRequest < Struct.new( :name, :description, :actions, :parameters, :tags, :latest_version_number) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Hash<String,Types::Parameter>
The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the ‘CreateExtensionAssociation` API action. For Lambda extension actions, these parameters are included in the Lambda request object.
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/aws-sdk-appconfig/types.rb', line 756 class CreateExtensionRequest < Struct.new( :name, :description, :actions, :parameters, :tags, :latest_version_number) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Adds one or more tags for the specified extension. Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/aws-sdk-appconfig/types.rb', line 756 class CreateExtensionRequest < Struct.new( :name, :description, :actions, :parameters, :tags, :latest_version_number) SENSITIVE = [] include Aws::Structure end |