Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AccessPoint

import type { AccessPoint } from "https://aws-api.deno.dev/v0.4/services/s3control.ts?docs=full";

An access point used to access a bucket.

interface AccessPoint {
AccessPointArn?: string | null;
Alias?: string | null;
Bucket: string;
BucketAccountId?: string | null;
Name: string;
NetworkOrigin: NetworkOrigin;
VpcConfiguration?: VpcConfiguration | null;
}

§Properties

§
AccessPointArn?: string | null
[src]

The ARN for the access point.

§
Alias?: string | null
[src]

The name or alias of the access point.

§
Bucket: string
[src]

The name of the bucket associated with this access point.

§
BucketAccountId?: string | null
[src]

The Amazon Web Services account ID associated with the S3 bucket associated with this access point.

§
Name: string
[src]

The name of this access point.

§
NetworkOrigin: NetworkOrigin
[src]

Indicates whether this access point allows access from the public internet. If VpcConfiguration is specified for this access point, then NetworkOrigin is VPC, and the access point doesn't allow access from the public internet. Otherwise, NetworkOrigin is Internet, and the access point allows access from the public internet, subject to the access point and bucket access policies.

§
VpcConfiguration?: VpcConfiguration | null
[src]

The virtual private cloud (VPC) configuration for this access point, if one exists.

Note: This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon Web Services.