Class: Aws::S3Control::Types::ObjectLambdaContentTransformation

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

Overview

Note:

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

Note:

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

A container for AwsLambdaTransformation.

Direct Known Subclasses

AwsLambda, Unknown

Defined Under Namespace

Classes: AwsLambda, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aws_lambdaTypes::AwsLambdaTransformation

A container for an Lambda function.



5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5619

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

  class AwsLambda < ObjectLambdaContentTransformation; end
  class Unknown < ObjectLambdaContentTransformation; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5619
5620
5621
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5619

def unknown
  @unknown
end