UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

43 lines (42 loc) 2.21 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The AWS::S3ObjectLambda::AccessPoint resource is an Amazon S3ObjectLambda resource type that you can use to add computation to S3 actions */ export declare function getAccessPoint(args: GetAccessPointArgs, opts?: pulumi.InvokeOptions): Promise<GetAccessPointResult>; export interface GetAccessPointArgs { /** * The name you want to assign to this Object lambda Access Point. */ name: string; } export interface GetAccessPointResult { readonly alias?: outputs.s3objectlambda.AccessPointAlias; /** * Specifies the ARN for the Object Lambda Access Point. */ readonly arn?: string; /** * The date and time when the Object lambda Access Point was created. */ readonly creationDate?: string; /** * The Object lambda Access Point Configuration that configures transformations to be applied on the objects on specified S3 Actions */ readonly objectLambdaConfiguration?: outputs.s3objectlambda.AccessPointObjectLambdaConfiguration; readonly policyStatus?: outputs.s3objectlambda.AccessPointPolicyStatus; /** * The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide. */ readonly publicAccessBlockConfiguration?: outputs.s3objectlambda.AccessPointPublicAccessBlockConfiguration; } /** * The AWS::S3ObjectLambda::AccessPoint resource is an Amazon S3ObjectLambda resource type that you can use to add computation to S3 actions */ export declare function getAccessPointOutput(args: GetAccessPointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccessPointResult>; export interface GetAccessPointOutputArgs { /** * The name you want to assign to this Object lambda Access Point. */ name: pulumi.Input<string>; }