Interface CfnAccessGrant.AccessGrantsLocationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccessGrant.AccessGrantsLocationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAccessGrant

@Stability(Stable) public static interface CfnAccessGrant.AccessGrantsLocationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration options of the S3 Access Grants location.

It contains the S3SubPrefix field. The grant scope, the data to which you are granting access, is the result of appending the Subprefix field to the scope of the registered location.

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.s3.*;
 AccessGrantsLocationConfigurationProperty accessGrantsLocationConfigurationProperty = AccessGrantsLocationConfigurationProperty.builder()
         .s3SubPrefix("s3SubPrefix")
         .build();
 

See Also: