Class: Aws::AppFabric::Types::Destination

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appfabric/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

FirehoseStream, S3Bucket, Unknown

Defined Under Namespace

Classes: FirehoseStream, S3Bucket, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#firehose_streamTypes::FirehoseStream

Contains information about an Amazon Kinesis Data Firehose delivery stream.



832
833
834
835
836
837
838
839
840
841
842
843
# File 'gems/aws-sdk-appfabric/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_bucketTypes::S3Bucket

Contains information about an Amazon S3 bucket.

Returns:



832
833
834
835
836
837
838
839
840
841
842
843
# File 'gems/aws-sdk-appfabric/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



832
833
834
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 832

def unknown
  @unknown
end