Class: Aws::Pinpoint::Types::ApplicationResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::ApplicationResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Provides information about an application.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the application.
 - 
  
    
      #creation_date  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time when the Application was created.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier for the application.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The display name of the application.
 - 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A string-to-string map of key-value pairs that identifies the tags that are associated with the application.
 
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the application.
      1514 1515 1516 1517 1518 1519 1520 1521 1522  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1514 class ApplicationResponse < Struct.new( :arn, :id, :name, :tags, :creation_date) SENSITIVE = [] include Aws::Structure end  | 
  
#creation_date ⇒ String
The date and time when the Application was created.
      1514 1515 1516 1517 1518 1519 1520 1521 1522  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1514 class ApplicationResponse < Struct.new( :arn, :id, :name, :tags, :creation_date) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The unique identifier for the application. This identifier is displayed as the **Project ID** on the Amazon Pinpoint console.
      1514 1515 1516 1517 1518 1519 1520 1521 1522  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1514 class ApplicationResponse < Struct.new( :arn, :id, :name, :tags, :creation_date) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The display name of the application. This name is displayed as the **Project name** on the Amazon Pinpoint console.
      1514 1515 1516 1517 1518 1519 1520 1521 1522  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1514 class ApplicationResponse < Struct.new( :arn, :id, :name, :tags, :creation_date) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Hash<String,String>
A string-to-string map of key-value pairs that identifies the tags that are associated with the application. Each tag consists of a required tag key and an associated tag value.
      1514 1515 1516 1517 1518 1519 1520 1521 1522  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1514 class ApplicationResponse < Struct.new( :arn, :id, :name, :tags, :creation_date) SENSITIVE = [] include Aws::Structure end  |