Class: Aws::S3::Types::LambdaFunctionConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass LambdaFunctionConfiguration data as a hash:

{
  id: "NotificationId",
  lambda_function_arn: "LambdaFunctionArn", # required
  events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
  filter: {
    key: {
      filter_rules: [
        {
          name: "prefix", # accepts prefix, suffix
          value: "FilterRuleValue",
        },
      ],
    },
  },
}

A container for specifying the configuration for AWS Lambda notifications.

Instance Attribute Summary collapse

Instance Attribute Details

#eventsArray<String>

The Amazon S3 bucket event for which to invoke the AWS Lambda function. For more information, see [Supported Event Types] in the *Amazon Simple Storage Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html

Returns:

  • (Array<String>)


5945
5946
5947
5948
5949
5950
5951
# File 'lib/aws-sdk-s3/types.rb', line 5945

class LambdaFunctionConfiguration < Struct.new(
  :id,
  :lambda_function_arn,
  :events,
  :filter)
  include Aws::Structure
end

#filterTypes::NotificationConfigurationFilter

Specifies object key name filtering rules. For information about key name filtering, see [Configuring Event Notifications] in the *Amazon Simple Storage Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html



5945
5946
5947
5948
5949
5950
5951
# File 'lib/aws-sdk-s3/types.rb', line 5945

class LambdaFunctionConfiguration < Struct.new(
  :id,
  :lambda_function_arn,
  :events,
  :filter)
  include Aws::Structure
end

#idString

An optional unique identifier for configurations in a notification configuration. If you don’t provide one, Amazon S3 will assign an ID.

Returns:

  • (String)


5945
5946
5947
5948
5949
5950
5951
# File 'lib/aws-sdk-s3/types.rb', line 5945

class LambdaFunctionConfiguration < Struct.new(
  :id,
  :lambda_function_arn,
  :events,
  :filter)
  include Aws::Structure
end

#lambda_function_arnString

The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon S3 invokes when the specified event type occurs.

Returns:

  • (String)


5945
5946
5947
5948
5949
5950
5951
# File 'lib/aws-sdk-s3/types.rb', line 5945

class LambdaFunctionConfiguration < Struct.new(
  :id,
  :lambda_function_arn,
  :events,
  :filter)
  include Aws::Structure
end