Class: Aws::CodeDeploy::Types::CreateApplicationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::CreateApplicationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Represents the input of a ‘CreateApplication` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application.
-
#compute_platform ⇒ String
The destination platform type for the deployment (‘Lambda`, `Server`, or `ECS`).
-
#tags ⇒ Array<Types::Tag>
The metadata that you apply to CodeDeploy applications to help you organize and categorize them.
Instance Attribute Details
#application_name ⇒ String
The name of the application. This name must be unique with the applicable user or Amazon Web Services account.
712 713 714 715 716 717 718 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 712 class CreateApplicationInput < Struct.new( :application_name, :compute_platform, :tags) SENSITIVE = [] include Aws::Structure end |
#compute_platform ⇒ String
The destination platform type for the deployment (‘Lambda`, `Server`, or `ECS`).
712 713 714 715 716 717 718 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 712 class CreateApplicationInput < Struct.new( :application_name, :compute_platform, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
712 713 714 715 716 717 718 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 712 class CreateApplicationInput < Struct.new( :application_name, :compute_platform, :tags) SENSITIVE = [] include Aws::Structure end |