Class: Aws::RDS::Types::Event
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::Event
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
This data type is used as a response element in the
- DescribeEvents][1
- 
action. 
[1]: docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEvents.html
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the date and time of the event. 
- 
  
    
      #event_categories  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the category for the event. 
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provides the text of this event. 
- 
  
    
      #source_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) for the event. 
- 
  
    
      #source_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provides the identifier for the source of the event. 
- 
  
    
      #source_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the source type for this event. 
Instance Attribute Details
#date ⇒ Time
Specifies the date and time of the event.
| 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 | # File 'lib/aws-sdk-rds/types.rb', line 15359 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date, :source_arn) SENSITIVE = [] include Aws::Structure end | 
#event_categories ⇒ Array<String>
Specifies the category for the event.
| 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 | # File 'lib/aws-sdk-rds/types.rb', line 15359 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date, :source_arn) SENSITIVE = [] include Aws::Structure end | 
#message ⇒ String
Provides the text of this event.
| 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 | # File 'lib/aws-sdk-rds/types.rb', line 15359 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date, :source_arn) SENSITIVE = [] include Aws::Structure end | 
#source_arn ⇒ String
The Amazon Resource Name (ARN) for the event.
| 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 | # File 'lib/aws-sdk-rds/types.rb', line 15359 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date, :source_arn) SENSITIVE = [] include Aws::Structure end | 
#source_identifier ⇒ String
Provides the identifier for the source of the event.
| 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 | # File 'lib/aws-sdk-rds/types.rb', line 15359 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date, :source_arn) SENSITIVE = [] include Aws::Structure end | 
#source_type ⇒ String
Specifies the source type for this event.
| 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 | # File 'lib/aws-sdk-rds/types.rb', line 15359 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date, :source_arn) SENSITIVE = [] include Aws::Structure end |