Class: Aws::Pinpoint::Types::CreateApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CreateApplicationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies the display name of an application and the tags to associate with the application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The display name of the application.
-
#tags ⇒ Hash<String,String>
A string-to-string map of key-value pairs that defines the tags to associate with the application.
Instance Attribute Details
#name ⇒ String
The display name of the application. This name is displayed as the **Project name** on the Amazon Pinpoint console.
2688 2689 2690 2691 2692 2693 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2688 class CreateApplicationRequest < Struct.new( :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A string-to-string map of key-value pairs that defines the tags to associate with the application. Each tag consists of a required tag key and an associated tag value.
2688 2689 2690 2691 2692 2693 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2688 class CreateApplicationRequest < Struct.new( :name, :tags) SENSITIVE = [] include Aws::Structure end |