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

Class: Aws::CodeDeploy::Types::CreateApplicationInput

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

Overview

Note:

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

{
  application_name: "ApplicationName", # required
  compute_platform: "Server", # accepts Server, Lambda, ECS
  tags: [
    {
      key: "Key",
      value: "Value",
    },
  ],
}

Represents the input of a CreateApplication operation.

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of the application. This name must be unique with the applicable IAM user or AWS account.

Returns:

  • (String)

    The name of the application.

#compute_platformString

The destination platform type for the deployment (Lambda, Server, or ECS).

Possible values:

  • Server
  • Lambda
  • ECS

Returns:

  • (String)

    The destination platform type for the deployment (Lambda, Server, or ECS).

#tagsArray<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.

Returns:

  • (Array<Types::Tag>)

    The metadata that you apply to CodeDeploy applications to help you organize and categorize them.