Class: Aws::AppFabric::Types::DestinationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::DestinationConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audit_log ⇒ Types::AuditLogDestinationConfiguration
Contains information about an audit log destination configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#audit_log ⇒ Types::AuditLogDestinationConfiguration
Contains information about an audit log destination configuration.
857 858 859 860 861 862 863 864 865 866 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
857 858 859 |
# File 'lib/aws-sdk-appfabric/types.rb', line 857 def unknown @unknown end |