Class: Aws::AppRegistry::Types::CreateApplicationRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)


420
421
422
423
424
425
426
427
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 420

class CreateApplicationRequest < Struct.new(
  :name,
  :description,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the application.

Returns:

  • (String)


420
421
422
423
424
425
426
427
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 420

class CreateApplicationRequest < Struct.new(
  :name,
  :description,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the application. The name must be unique in the region in which you are creating the application.

Returns:

  • (String)


420
421
422
423
424
425
426
427
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 420

class CreateApplicationRequest < Struct.new(
  :name,
  :description,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

Key-value pairs you can use to associate with the application.

Returns:

  • (Hash<String,String>)


420
421
422
423
424
425
426
427
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 420

class CreateApplicationRequest < Struct.new(
  :name,
  :description,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end