UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

27 lines (26 loc) 1.18 kB
import { CfnResource, Resolvable } from '../../base'; export declare type BucketPolicy_Type = 'AWS::S3Outposts::BucketPolicy'; export declare const BucketPolicy_Type = "AWS::S3Outposts::BucketPolicy"; /** * Resource Type Definition for AWS::S3Outposts::BucketPolicy {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-bucketpolicy.html} */ export default function BucketPolicy(props: BucketPolicy_Properties): CfnResource<BucketPolicy_Properties>; /** * Resource Type Definition for AWS::S3Outposts::BucketPolicy {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-bucketpolicy.html} */ export declare type BucketPolicy_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-bucketpolicy.html#cfn-s3outposts-bucketpolicy-bucket} */ Bucket: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-bucketpolicy.html#cfn-s3outposts-bucketpolicy-policydocument} */ PolicyDocument: { [k: string]: unknown; }; };