interface SpaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.SpaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#SpaceReference |
Java | software.amazon.awscdk.interfaces.quicksight.SpaceReference |
Python | aws_cdk.interfaces.aws_quicksight.SpaceReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » SpaceReference |
A reference to a Space resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_quicksight } from 'aws-cdk-lib/interfaces';
const spaceReference: interfaces_quicksight.SpaceReference = {
awsAccountId: 'awsAccountId',
spaceArn: 'spaceArn',
spaceId: 'spaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the Space resource. |
| space | string | The ARN of the Space resource. |
| space | string | The SpaceId of the Space resource. |
awsAccountId
Type:
string
The AwsAccountId of the Space resource.
spaceArn
Type:
string
The ARN of the Space resource.
spaceId
Type:
string
The SpaceId of the Space resource.

.NET
Go
Java
Python
TypeScript