Class: Aws::Pinpoint::Types::CreateApplicationRequest

Inherits:
Struct
  • Object
show all
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",
  tags: {
    "__string" => "__string",
  },
}

Application Request.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The display name of the application. Used in the Amazon Pinpoint console.

Returns:

  • (String)


1938
1939
1940
1941
1942
# File 'lib/aws-sdk-pinpoint/types.rb', line 1938

class CreateApplicationRequest < Struct.new(
  :name,
  :tags)
  include Aws::Structure
end

#tagsHash<String,String>

The Tags for the app.

Returns:

  • (Hash<String,String>)


1938
1939
1940
1941
1942
# File 'lib/aws-sdk-pinpoint/types.rb', line 1938

class CreateApplicationRequest < Struct.new(
  :name,
  :tags)
  include Aws::Structure
end