CfnWorkspaceMixinProps
- class aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnWorkspaceMixinProps(*, description=None, role=None, s3_location=None, tags=None, workspace_id=None)
Bases:
objectProperties for CfnWorkspacePropsMixin.
- Parameters:
description (
Optional[str]) – The description of the workspace.role (
Optional[str]) – The ARN of the execution role associated with the workspace.s3_location (
Optional[str]) – The ARN of the S3 bucket where resources associated with the workspace are stored.tags (
Optional[Mapping[str,str]]) – Metadata that you can use to manage the workspace.workspace_id (
Optional[str]) – The ID of the workspace.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_iottwinmaker import mixins as iottwinmaker_mixins cfn_workspace_mixin_props = iottwinmaker_mixins.CfnWorkspaceMixinProps( description="description", role="role", s3_location="s3Location", tags={ "tags_key": "tags" }, workspace_id="workspaceId" )
Attributes
- description
The description of the workspace.
- role
The ARN of the execution role associated with the workspace.
- s3_location
The ARN of the S3 bucket where resources associated with the workspace are stored.
- tags
Metadata that you can use to manage the workspace.
- workspace_id
The ID of the workspace.