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();
 
  • Method Details

    • getBucket

      @Stability(Stable) @NotNull String getBucket()
      The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of this access point.
    • getVpcConfiguration

      @Stability(Stable) @NotNull Object getVpcConfiguration()
      The virtual private cloud (VPC) configuration for this access point, if one exists.
    • getPolicy

      @Stability(Stable) @Nullable default Object getPolicy()
      The access point policy associated with this access point.
    • builder

      @Stability(Stable) static CfnAccessPointProps.Builder builder()
      Returns:
      a CfnAccessPointProps.Builder of CfnAccessPointProps