SpaceReference
- class aws_cdk.interfaces.aws_quicksight.SpaceReference(*, aws_account_id, space_arn, space_id)
Bases:
objectA reference to a Space resource.
- Parameters:
aws_account_id (
str) – The AwsAccountId of the Space resource.space_arn (
str) – The ARN of the Space resource.space_id (
str) – The SpaceId of the Space 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.interfaces import aws_quicksight as interfaces_quicksight space_reference = interfaces_quicksight.SpaceReference( aws_account_id="awsAccountId", space_arn="spaceArn", space_id="spaceId" )
Attributes
- aws_account_id
The AwsAccountId of the Space resource.
- space_arn
The ARN of the Space resource.
- space_id
The SpaceId of the Space resource.