Interface CfnAccessPointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.063Z")
@Stability(Stable)
public interface CfnAccessPointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAccessPoint
.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessPointProps
static final class
An implementation forCfnAccessPointProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAccessPointProps.Builder
builder()
The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.getName()
The name of this access point.default Object
The access point policy associated with this access point.The virtual private cloud (VPC) configuration for this access point, if one exists.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point. -
getName
The name of this access point. -
getVpcConfiguration
The virtual private cloud (VPC) configuration for this access point, if one exists. -
getPolicy
The access point policy associated with this access point. -
builder
- Returns:
- a
CfnAccessPointProps.Builder
ofCfnAccessPointProps
-