Class: Aws::GuardDuty::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::Destination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Contains information about the publishing destination, including the ID, type, and status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_id ⇒ String
The unique ID of the publishing destination.
-
#destination_type ⇒ String
The type of resource used for the publishing destination.
-
#status ⇒ String
The status of the publishing destination.
Instance Attribute Details
#destination_id ⇒ String
The unique ID of the publishing destination.
2554 2555 2556 2557 2558 2559 2560 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2554 class Destination < Struct.new( :destination_id, :destination_type, :status) SENSITIVE = [] include Aws::Structure end |
#destination_type ⇒ String
The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.
2554 2555 2556 2557 2558 2559 2560 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2554 class Destination < Struct.new( :destination_id, :destination_type, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the publishing destination.
2554 2555 2556 2557 2558 2559 2560 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2554 class Destination < Struct.new( :destination_id, :destination_type, :status) SENSITIVE = [] include Aws::Structure end |