CfnWorkspaceProps
- class aws_cdk.aws_iottwinmaker.CfnWorkspaceProps(*, role, s3_location, workspace_id, description=None, tags=None)
Bases:
object
Properties for defining a
CfnWorkspace
.- Parameters:
role (
str
) – The ARN of the execution role associated with the workspace.s3_location (
str
) – The ARN of the S3 bucket where resources associated with the workspace are stored.workspace_id (
str
) – The ID of the workspace.description (
Optional
[str
]) – The description of the workspace.tags (
Optional
[Mapping
[str
,str
]]) – Metadata that you can use to manage 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 import aws_iottwinmaker as iottwinmaker cfn_workspace_props = iottwinmaker.CfnWorkspaceProps( role="role", s3_location="s3Location", workspace_id="workspaceId", # the properties below are optional description="description", tags={ "tags_key": "tags" } )
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.