/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type Definition for AWS::S3Outposts::AccessPoint */ export interface AwsS3OutpostsAccesspoint { /** * The Amazon Resource Name (ARN) of the specified AccessPoint. */ Arn?: string; /** * The Amazon Resource Name (ARN) of the bucket you want to associate this AccessPoint with. */ Bucket: string; /** * A name for the AccessPoint. */ Name: string; VpcConfiguration: VpcConfiguration; /** * The access point policy associated with this access point. */ Policy?: { [k: string]: unknown; }; } /** * Virtual Private Cloud (VPC) from which requests can be made to the AccessPoint. */ export interface VpcConfiguration { /** * Virtual Private Cloud (VPC) Id from which AccessPoint will allow requests. */ VpcId?: string; }