Class: Aws::Health::Types::OrganizationEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Health::Types::OrganizationEventDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-health/types.rb
Overview
Detailed information about an event. A combination of an [Event] object, an [EventDescription] object, and additional metadata about the event. Returned by the [DescribeEventDetailsForOrganization] operation.
[1]: docs.aws.amazon.com/health/latest/APIReference/API_Event.html [2]: docs.aws.amazon.com/health/latest/APIReference/API_EventDescription.html [3]: docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetailsForOrganization.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_account_id ⇒ String
The 12-digit Amazon Web Services account numbers that contains the affected entities.
-
#event ⇒ Types::Event
Summary information about an Health event.
-
#event_description ⇒ Types::EventDescription
The detailed description of the event.
-
#event_metadata ⇒ Hash<String,String>
Additional metadata about the event.
Instance Attribute Details
#aws_account_id ⇒ String
The 12-digit Amazon Web Services account numbers that contains the affected entities.
1519 1520 1521 1522 1523 1524 1525 1526 |
# File 'lib/aws-sdk-health/types.rb', line 1519 class OrganizationEventDetails < Struct.new( :aws_account_id, :event, :event_description, :event_metadata) SENSITIVE = [] include Aws::Structure end |
#event ⇒ Types::Event
Summary information about an Health event.
Health events can be public or account-specific:
-
*Public events* might be service events that are not specific to an Amazon Web Services account. For example, if there is an issue with an Amazon Web Services Region, Health provides information about the event, even if you don’t use services or resources in that Region.
-
Account-specific events are specific to either your Amazon Web Services account or an account in your organization. For example, if there’s an issue with Amazon Elastic Compute Cloud in a Region that you use, Health provides information about the event and the affected resources in the account.
You can determine if an event is public or account-specific by using the ‘eventScopeCode` parameter. For more information, see [eventScopeCode].
[1]: docs.aws.amazon.com/health/latest/APIReference/API_Event.html#AWSHealth-Type-Event-eventScopeCode
1519 1520 1521 1522 1523 1524 1525 1526 |
# File 'lib/aws-sdk-health/types.rb', line 1519 class OrganizationEventDetails < Struct.new( :aws_account_id, :event, :event_description, :event_metadata) SENSITIVE = [] include Aws::Structure end |
#event_description ⇒ Types::EventDescription
The detailed description of the event. Included in the information returned by the [DescribeEventDetails] operation.
[1]: docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetails.html
1519 1520 1521 1522 1523 1524 1525 1526 |
# File 'lib/aws-sdk-health/types.rb', line 1519 class OrganizationEventDetails < Struct.new( :aws_account_id, :event, :event_description, :event_metadata) SENSITIVE = [] include Aws::Structure end |
#event_metadata ⇒ Hash<String,String>
Additional metadata about the event.
1519 1520 1521 1522 1523 1524 1525 1526 |
# File 'lib/aws-sdk-health/types.rb', line 1519 class OrganizationEventDetails < Struct.new( :aws_account_id, :event, :event_description, :event_metadata) SENSITIVE = [] include Aws::Structure end |