Class: Aws::CodeDeploy::Types::CreateApplicationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::CreateApplicationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass CreateApplicationInput data as a hash:
{
application_name: "ApplicationName", # required
compute_platform: "Server", # accepts Server, Lambda, ECS
tags: [
{
key: "Key",
value: "Value",
},
],
}
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 IAM user or AWS account.
861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 861 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`).
861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 861 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.
861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 861 class CreateApplicationInput < Struct.new( :application_name, :compute_platform, :tags) SENSITIVE = [] include Aws::Structure end |