Class: Aws::AppFabric::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::Destination
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appfabric/types.rb
Overview
Note:
Destination is a union - when making an API calls you must set exactly one of the members.
Note:
Destination is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Destination corresponding to the set member.
Contains information about an audit log destination.
Direct Known Subclasses
Defined Under Namespace
Classes: FirehoseStream, S3Bucket, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#firehose_stream ⇒ Types::FirehoseStream
Contains information about an Amazon Kinesis Data Firehose delivery stream.
-
#s3_bucket ⇒ Types::S3Bucket
Contains information about an Amazon S3 bucket.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#firehose_stream ⇒ Types::FirehoseStream
Contains information about an Amazon Kinesis Data Firehose delivery stream.
832 833 834 835 836 837 838 839 840 841 842 843 |
# File 'lib/aws-sdk-appfabric/types.rb', line 832 class Destination < Struct.new( :s3_bucket, :firehose_stream, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Bucket < Destination; end class FirehoseStream < Destination; end class Unknown < Destination; end end |
#s3_bucket ⇒ Types::S3Bucket
Contains information about an Amazon S3 bucket.
832 833 834 835 836 837 838 839 840 841 842 843 |
# File 'lib/aws-sdk-appfabric/types.rb', line 832 class Destination < Struct.new( :s3_bucket, :firehose_stream, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Bucket < Destination; end class FirehoseStream < Destination; end class Unknown < Destination; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
832 833 834 |
# File 'lib/aws-sdk-appfabric/types.rb', line 832 def unknown @unknown end |