interface CfnWorkspaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnWorkspaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnWorkspaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnWorkspaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnWorkspaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » CfnWorkspaceMixinProps |
Properties for CfnWorkspacePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as iotsitewise } from '@aws-cdk/cfn-property-mixins';
const cfnWorkspaceMixinProps: iotsitewise.CfnWorkspaceMixinProps = {
encryptionConfiguration: {
encryptionType: 'encryptionType',
},
kmsKeyId: 'kmsKeyId',
tags: [{
key: 'key',
value: 'value',
}],
workspaceDescription: 'workspaceDescription',
workspaceName: 'workspaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | The encryption configuration for the workspace. |
| kms | string | The ARN of the AWS KMS key used for KMS_BASED_ENCRYPTION. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| workspace | string | A description of the workspace. |
| workspace | string | The name of the workspace. |
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
The encryption configuration for the workspace.
kmsKeyId?
Type:
string
(optional)
The ARN of the AWS KMS key used for KMS_BASED_ENCRYPTION.
Required when EncryptionConfiguration.EncryptionType is KMS_BASED_ENCRYPTION.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
workspaceDescription?
Type:
string
(optional)
A description of the workspace.
workspaceName?
Type:
string
(optional)
The name of the workspace.

.NET
Go
Java
Python
TypeScript