Class: Aws::AppFabric::Types::ProcessingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::ProcessingConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appfabric/types.rb
Overview
Note:
ProcessingConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
ProcessingConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProcessingConfiguration corresponding to the set member.
Contains information about how ingested data is processed.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audit_log ⇒ Types::AuditLogProcessingConfiguration
Contains information about an audit log processing configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#audit_log ⇒ Types::AuditLogProcessingConfiguration
Contains information about an audit log processing configuration.
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 |
# File 'lib/aws-sdk-appfabric/types.rb', line 1451 class ProcessingConfiguration < Struct.new( :audit_log, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AuditLog < ProcessingConfiguration; end class Unknown < ProcessingConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1451 1452 1453 |
# File 'lib/aws-sdk-appfabric/types.rb', line 1451 def unknown @unknown end |