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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pinpoint/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

Instance Attribute Details

#nameString

The display name of the application. This name is displayed as the Project name on the Amazon Pinpoint console.

Returns:

  • (String)


2678
2679
2680
2681
2682
2683
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2678

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

#tagsHash<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.

Returns:

  • (Hash<String,String>)


2678
2679
2680
2681
2682
2683
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2678

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