Interface CfnAccessGrantsInstanceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessGrantsInstanceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:51:04.639Z")
@Stability(Stable)
public interface CfnAccessGrantsInstanceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAccessGrantsInstance
.
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.*; CfnAccessGrantsInstanceProps cfnAccessGrantsInstanceProps = CfnAccessGrantsInstanceProps.builder() .identityCenterArn("identityCenterArn") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessGrantsInstanceProps
static final class
An implementation forCfnAccessGrantsInstanceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
If you would like to associate your S3 Access Grants instance with an AWS IAM Identity Center instance, use this field to pass the Amazon Resource Name (ARN) of the AWS IAM Identity Center instance that you are associating with your S3 Access Grants instance.getTags()
The AWS resource tags that you are adding to the S3 Access Grants instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentityCenterArn
If you would like to associate your S3 Access Grants instance with an AWS IAM Identity Center instance, use this field to pass the Amazon Resource Name (ARN) of the AWS IAM Identity Center instance that you are associating with your S3 Access Grants instance.An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center.
-
getTags
The AWS resource tags that you are adding to the S3 Access Grants instance.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.
-
builder
-