interface CfnWorkspaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnWorkspaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnWorkspaceProps |
Java | software.amazon.awscdk.services.iotsitewise.CfnWorkspaceProps |
Python | aws_cdk.aws_iotsitewise.CfnWorkspaceProps |
TypeScript | aws-cdk-lib » aws_iotsitewise » CfnWorkspaceProps |
Properties for defining a CfnWorkspace.
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-lib';
const cfnWorkspaceProps: iotsitewise.CfnWorkspaceProps = {
encryptionConfiguration: {
encryptionType: 'encryptionType',
},
workspaceName: 'workspaceName',
// the properties below are optional
kmsKeyId: 'kmsKeyId',
tags: [{
key: 'key',
value: 'value',
}],
workspaceDescription: 'workspaceDescription',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | The encryption configuration for the workspace. |
| workspace | string | The name of 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. |
encryptionConfiguration
Type:
IResolvable | Encryption
The encryption configuration for the workspace.
workspaceName
Type:
string
The name of 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.

.NET
Go
Java
Python
TypeScript