@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.835Z") @Stability(value=Stable) public interface CfnAccessPointProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3outposts.*;
Object policy;
CfnAccessPointProps cfnAccessPointProps = CfnAccessPointProps.builder()
.bucket("bucket")
.name("name")
.vpcConfiguration(VpcConfigurationProperty.builder()
.vpcId("vpcId")
.build())
// the properties below are optional
.policy(policy)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAccessPointProps.Builder
A builder for
CfnAccessPointProps |
static class |
CfnAccessPointProps.Jsii$Proxy
An implementation for
CfnAccessPointProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAccessPointProps.Builder |
builder() |
String |
getBucket()
The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.
|
String |
getName()
The name of this access point.
|
default Object |
getPolicy()
The access point policy associated with this access point.
|
Object |
getVpcConfiguration()
The virtual private cloud (VPC) configuration for this access point, if one exists.
|
@Stability(value=Stable) @NotNull String getBucket()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getVpcConfiguration()
@Stability(value=Stable) @Nullable default Object getPolicy()
@Stability(value=Stable) static CfnAccessPointProps.Builder builder()
CfnAccessPointProps.Builder of CfnAccessPointPropsCopyright © 2022. All rights reserved.