Class: Aws::Ivschat::Types::DestinationConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb

Overview

Note:

DestinationConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

DestinationConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DestinationConfiguration corresponding to the set member.

A complex type that describes a location where chat logs will be stored. Each member represents the configuration of one log destination. For logging, you define only one type of destination (for CloudWatch Logs, Kinesis Firehose, or S3).

Direct Known Subclasses

CloudWatchLogs, Firehose, S3, Unknown

Defined Under Namespace

Classes: CloudWatchLogs, Firehose, S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_watch_logsTypes::CloudWatchLogsDestinationConfiguration

An Amazon CloudWatch Logs destination configuration where chat activity will be logged.



413
414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 413

class DestinationConfiguration < Struct.new(
  :cloud_watch_logs,
  :firehose,
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CloudWatchLogs < DestinationConfiguration; end
  class Firehose < DestinationConfiguration; end
  class S3 < DestinationConfiguration; end
  class Unknown < DestinationConfiguration; end
end

#firehoseTypes::FirehoseDestinationConfiguration

An Amazon Kinesis Data Firehose destination configuration where chat activity will be logged.



413
414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 413

class DestinationConfiguration < Struct.new(
  :cloud_watch_logs,
  :firehose,
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CloudWatchLogs < DestinationConfiguration; end
  class Firehose < DestinationConfiguration; end
  class S3 < DestinationConfiguration; end
  class Unknown < DestinationConfiguration; end
end

#s3Types::S3DestinationConfiguration

An Amazon S3 destination configuration where chat activity will be logged.



413
414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 413

class DestinationConfiguration < Struct.new(
  :cloud_watch_logs,
  :firehose,
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CloudWatchLogs < DestinationConfiguration; end
  class Firehose < DestinationConfiguration; end
  class S3 < DestinationConfiguration; end
  class Unknown < DestinationConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



413
414
415
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 413

def unknown
  @unknown
end