interface CfnSpaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnSpaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnSpaceProps |
Java | software.amazon.awscdk.services.quicksight.CfnSpaceProps |
Python | aws_cdk.aws_quicksight.CfnSpaceProps |
TypeScript | aws-cdk-lib » aws_quicksight » CfnSpaceProps |
Properties for defining a CfnSpace.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-space.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const cfnSpaceProps: quicksight.CfnSpaceProps = {
awsAccountId: 'awsAccountId',
name: 'name',
spaceId: 'spaceId',
// the properties below are optional
description: 'description',
permissions: [{
actions: ['actions'],
principal: 'principal',
}],
resources: [{
resourceArn: 'resourceArn',
resourceType: 'resourceType',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The ID of the Amazon Web Services account where the space is being created. |
| name | string | The display name of the space. |
| space | string | The unique identifier for the space. |
| description? | string | A description of the space. |
| permissions? | IResolvable | (IResolvable | Resource)[] | A list of permissions granted on the space. |
| resources? | IResolvable | (IResolvable | Space)[] | A list of QuickSight resources attached to the space. |
| tags? | Cfn[] | A list of key-value pairs to associate with the space resource. |
awsAccountId
Type:
string
The ID of the Amazon Web Services account where the space is being created.
name
Type:
string
The display name of the space.
spaceId
Type:
string
The unique identifier for the space.
description?
Type:
string
(optional)
A description of the space.
permissions?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
A list of permissions granted on the space.
resources?
Type:
IResolvable | (IResolvable | Space)[]
(optional)
A list of QuickSight resources attached to the space.
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs to associate with the space resource.

.NET
Go
Java
Python
TypeScript