Class: Aws::AppRegistry::Types::CreateApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRegistry::Types::CreateApplicationRequest
- Defined in:
- gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique identifier that you provide to ensure idempotency.
-
#description ⇒ String
The description of the application.
-
#name ⇒ String
The name of the application.
-
#tags ⇒ Hash<String,String>
Key-value pairs you can use to associate with the application.
Instance Attribute Details
#client_token ⇒ String
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.
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 |
#description ⇒ String
The description of the application.
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 |
#name ⇒ String
The name of the application. The name must be unique in the region in which you are creating the application.
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 |
#tags ⇒ Hash<String,String>
Key-value pairs you can use to associate with the application.
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 |