Class: Aws::S3::Types::CloudFunctionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::CloudFunctionConfiguration
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Container for specifying the Lambda notification configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_function ⇒ String
Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.
-
#event ⇒ String
The bucket event for which to send notifications.
-
#events ⇒ Array<String>
Bucket events for which to send notifications.
-
#id ⇒ String
An optional unique identifier for configurations in a notification configuration.
-
#invocation_role ⇒ String
The role supporting the invocation of the Lambda function.
Instance Attribute Details
#cloud_function ⇒ String
Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.
755 756 757 758 759 760 761 762 763 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 755 class CloudFunctionConfiguration < Struct.new( :id, :event, :events, :cloud_function, :invocation_role) SENSITIVE = [] include Aws::Structure end |
#event ⇒ String
The bucket event for which to send notifications.
755 756 757 758 759 760 761 762 763 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 755 class CloudFunctionConfiguration < Struct.new( :id, :event, :events, :cloud_function, :invocation_role) SENSITIVE = [] include Aws::Structure end |
#events ⇒ Array<String>
Bucket events for which to send notifications.
755 756 757 758 759 760 761 762 763 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 755 class CloudFunctionConfiguration < Struct.new( :id, :event, :events, :cloud_function, :invocation_role) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
An optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.
755 756 757 758 759 760 761 762 763 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 755 class CloudFunctionConfiguration < Struct.new( :id, :event, :events, :cloud_function, :invocation_role) SENSITIVE = [] include Aws::Structure end |
#invocation_role ⇒ String
The role supporting the invocation of the Lambda function
755 756 757 758 759 760 761 762 763 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 755 class CloudFunctionConfiguration < Struct.new( :id, :event, :events, :cloud_function, :invocation_role) SENSITIVE = [] include Aws::Structure end |