AccessGrantsLocationReference

class aws_cdk.aws_s3.AccessGrantsLocationReference(*, access_grants_location_arn, access_grants_location_id)

Bases: object

A reference to a AccessGrantsLocation resource.

Parameters:
  • access_grants_location_arn (str) – The ARN of the AccessGrantsLocation resource.

  • access_grants_location_id (str) – The AccessGrantsLocationId of the AccessGrantsLocation resource.

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 import aws_s3 as s3

access_grants_location_reference = s3.AccessGrantsLocationReference(
    access_grants_location_arn="accessGrantsLocationArn",
    access_grants_location_id="accessGrantsLocationId"
)

Attributes

access_grants_location_arn

The ARN of the AccessGrantsLocation resource.

access_grants_location_id

The AccessGrantsLocationId of the AccessGrantsLocation resource.