interface CfnWALWorkspaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnWALWorkspaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnWALWorkspaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnWALWorkspaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnWALWorkspaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » CfnWALWorkspaceMixinProps |
Properties for CfnWALWorkspacePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-walworkspace.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as emr } from '@aws-cdk/cfn-property-mixins';
const cfnWALWorkspaceMixinProps: emr.CfnWALWorkspaceMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
walWorkspaceName: 'walWorkspaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| wal | string | The name of the emrwal container. |
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
walWorkspaceName?
Type:
string
(optional)
The name of the emrwal container.

.NET
Go
Java
Python
TypeScript