Class: Aws::AppFabric::Types::ProcessingConfiguration

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

Direct Known Subclasses

AuditLog, Unknown

Defined Under Namespace

Classes: AuditLog, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audit_logTypes::AuditLogProcessingConfiguration

Contains information about an audit log processing configuration.



1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
# File 'gems/aws-sdk-appfabric/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1451
1452
1453
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 1451

def unknown
  @unknown
end