interface CfnWALWorkspaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnWALWorkspaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnWALWorkspaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnWALWorkspaceMixinProps |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnWALWorkspaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » 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 { mixins as emr_mixins } from '@aws-cdk/mixins-preview/aws-emr';
const cfnWALWorkspaceMixinProps: emr_mixins.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