Class: Aws::Pinpoint::Types::CreateApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CreateApplicationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass CreateApplicationRequest data as a hash:
{
name: "__string", # required
tags: {
"__string" => "__string",
},
}
Specifies the display name of an application and the tags to associate with the application.
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.
3126 3127 3128 3129 3130 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3126 class CreateApplicationRequest < Struct.new( :name, :tags) 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.
3126 3127 3128 3129 3130 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3126 class CreateApplicationRequest < Struct.new( :name, :tags) include Aws::Structure end |