Class: Aws::AppFabric::Types::DestinationConfiguration

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

Contains information about the destination of ingested data.

Direct Known Subclasses

AuditLog, Unknown

Defined Under Namespace

Classes: AuditLog, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audit_logTypes::AuditLogDestinationConfiguration

Contains information about an audit log destination configuration.



857
858
859
860
861
862
863
864
865
866
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 857

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

  class AuditLog < DestinationConfiguration; end
  class Unknown < DestinationConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



857
858
859
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 857

def unknown
  @unknown
end