CfnAccessGrantsInstanceMixinProps

class aws_cdk.mixins_preview.aws_s3.mixins.CfnAccessGrantsInstanceMixinProps(*, identity_center_arn=None, tags=None)

Bases: object

Properties for CfnAccessGrantsInstancePropsMixin.

Parameters:
  • identity_center_arn (Optional[str]) – 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.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantsinstance.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_s3 import mixins as s3_mixins

cfn_access_grants_instance_mixin_props = s3_mixins.CfnAccessGrantsInstanceMixinProps(
    identity_center_arn="identityCenterArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

identity_center_arn

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantsinstance.html#cfn-s3-accessgrantsinstance-identitycenterarn

tags

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantsinstance.html#cfn-s3-accessgrantsinstance-tags