interface LogTypeMapKeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRServerless.Mixins.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrserverless/mixins#CfnApplicationPropsMixin_LogTypeMapKeyValuePairProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrserverless.mixins.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty |
Python | aws_cdk.mixins_preview.aws_emrserverless.mixins.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrserverless » mixins » CfnApplicationPropsMixin » LogTypeMapKeyValuePairProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as emrserverless_mixins } from '@aws-cdk/mixins-preview/aws-emrserverless';
const logTypeMapKeyValuePairProperty: emrserverless_mixins.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty = {
key: 'key',
value: ['value'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | |
| value? | string[] | List of Applicable values: [STDOUT, STDERR, HIVE_LOG, TEZ_AM, SYSTEM_LOGS]. |
key?
Type:
string
(optional)
value?
Type:
string[]
(optional)
List of Applicable values: [STDOUT, STDERR, HIVE_LOG, TEZ_AM, SYSTEM_LOGS].

.NET
Go
Java
Python
TypeScript