interface CfnSpaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnSpaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnSpaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnSpaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnSpaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnSpaceMixinProps |
Properties for CfnSpacePropsMixin.
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/cfn-property-mixins';
const cfnSpaceMixinProps: quicksight.CfnSpaceMixinProps = {
awsAccountId: 'awsAccountId',
description: 'description',
name: 'name',
permissions: [{
actions: ['actions'],
principal: 'principal',
}],
resources: [{
resourceArn: 'resourceArn',
resourceType: 'resourceType',
}],
spaceId: 'spaceId',
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. |
| description? | string | A description of the space. |
| name? | string | The display name 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. |
| space | string | The unique identifier for the space. |
| tags? | Cfn[] | A list of key-value pairs to associate with the space resource. |
awsAccountId?
Type:
string
(optional)
The ID of the Amazon Web Services account where the space is being created.
description?
Type:
string
(optional)
A description of the space.
name?
Type:
string
(optional)
The display name 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.
spaceId?
Type:
string
(optional)
The unique identifier for the space.
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs to associate with the space resource.

.NET
Go
Java
Python
TypeScript