CfnWALWorkspaceProps
- class aws_cdk.aws_emr.CfnWALWorkspaceProps(*, tags=None, wal_workspace_name=None)
Bases:
objectProperties for defining a
CfnWALWorkspace.- Parameters:
tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.wal_workspace_name (
Optional[str]) – The name of the emrwal container.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-walworkspace.html
- 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_emr as emr cfn_wALWorkspace_props = emr.CfnWALWorkspaceProps( tags=[CfnTag( key="key", value="value" )], wal_workspace_name="walWorkspaceName" )
Attributes
- tags
An array of key-value pairs to apply to this resource.
- wal_workspace_name
The name of the emrwal container.