Interface CfnAccessGrantsLocationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessGrantsLocationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:31.489Z")
@Stability(Stable)
public interface CfnAccessGrantsLocationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAccessGrantsLocationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.s3.mixins.*;
CfnAccessGrantsLocationMixinProps cfnAccessGrantsLocationMixinProps = CfnAccessGrantsLocationMixinProps.builder()
.iamRoleArn("iamRoleArn")
.locationScope("locationScope")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessGrantsLocationMixinPropsstatic final classAn implementation forCfnAccessGrantsLocationMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIamRoleArn
The Amazon Resource Name (ARN) of the IAM role for the registered location.S3 Access Grants assumes this role to manage access to the registered location.
- See Also:
-
getLocationScope
The S3 URI path to the location that you are registering.The location scope can be the default S3 location
s3://, the S3 path to a bucket, or the S3 path to a bucket and prefix. A prefix in S3 is a string of characters at the beginning of an object key name used to organize the objects that you store in your S3 buckets. For example, object key names that start with theengineering/prefix or object key names that start with themarketing/campaigns/prefix.- See Also:
-
getTags
The AWS resource tags that you are adding to the S3 Access Grants location.Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources.
- See Also:
-
builder
-