Interface CfnAccessGrant.AccessGrantsLocationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessGrant.AccessGrantsLocationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAccessGrant
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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessGrant.AccessGrantsLocationConfigurationProperty
static final class
An implementation forCfnAccessGrant.AccessGrantsLocationConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
TheS3SubPrefix
is appended to the location scope creating the grant scope.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3SubPrefix
TheS3SubPrefix
is appended to the location scope creating the grant scope.Use this field to narrow the scope of the grant to a subset of the location scope. This field is required if the location scope is the default location
s3://
because you cannot create a grant for all of your S3 data in the Region and must narrow the scope. For example, if the location scope is the default locations3://
, theS3SubPrefx
can be a<bucket-name>/*
, so the full grant scope path would bes3://<bucket-name>/*
. Or theS3SubPrefx
can be<bucket-name>/<prefix-name>*
, so the full grant scope path would bes3://<bucket-name>/<prefix-name>*
.If the
S3SubPrefix
includes a prefix, append the wildcard character*
after the prefix to indicate that you want to include all object key names in the bucket that start with that prefix.- See Also:
-
builder
@Stability(Stable) static CfnAccessGrant.AccessGrantsLocationConfigurationProperty.Builder builder()
-