Class: Aws::S3Control::Types::CreateAccessPointForObjectLambdaRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::CreateAccessPointForObjectLambdaRequest
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass CreateAccessPointForObjectLambdaRequest data as a hash:
{
account_id: "AccountId", # required
name: "ObjectLambdaAccessPointName", # required
configuration: { # required
supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
cloud_watch_metrics_enabled: false,
allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber
transformation_configurations: [ # required
{
actions: ["GetObject"], # required, accepts GetObject
content_transformation: { # required
aws_lambda: {
function_arn: "FunctionArnString", # required
function_payload: "AwsLambdaTransformationPayload",
},
},
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Amazon Web Services account ID for owner of the specified Object Lambda Access Point.
-
#configuration ⇒ Types::ObjectLambdaConfiguration
Object Lambda Access Point configuration as a JSON document.
-
#name ⇒ String
The name you want to assign to this Object Lambda Access Point.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID for owner of the specified Object Lambda Access Point.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 444 class CreateAccessPointForObjectLambdaRequest < Struct.new( :account_id, :name, :configuration) SENSITIVE = [] include Aws::Structure end |
#configuration ⇒ Types::ObjectLambdaConfiguration
Object Lambda Access Point configuration as a JSON document.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 444 class CreateAccessPointForObjectLambdaRequest < Struct.new( :account_id, :name, :configuration) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name you want to assign to this Object Lambda Access Point.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 444 class CreateAccessPointForObjectLambdaRequest < Struct.new( :account_id, :name, :configuration) SENSITIVE = [] include Aws::Structure end |