interface LogTypeMapKeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMRServerless.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemrserverless#CfnApplicationPropsMixin_LogTypeMapKeyValuePairProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emrserverless.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty |
Python | aws_cdk.cfn_property_mixins.aws_emrserverless.CfnApplicationPropsMixin.LogTypeMapKeyValuePairProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emrserverless » CfnApplicationPropsMixin » LogTypeMapKeyValuePairProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emrserverless as emrserverless } from '@aws-cdk/cfn-property-mixins';
const logTypeMapKeyValuePairProperty: emrserverless.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