interface CfnEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMRContainers.CfnEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemrcontainers#CfnEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.emrcontainers.CfnEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_emrcontainers.CfnEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emrcontainers » CfnEndpointMixinProps |
Properties for CfnEndpointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emrcontainers as emrcontainers } from '@aws-cdk/cfn-property-mixins';
declare const eMREKSConfigurationProperty_: emrcontainers.CfnEndpointPropsMixin.EMREKSConfigurationProperty;
const cfnEndpointMixinProps: emrcontainers.CfnEndpointMixinProps = {
configurationOverrides: {
applicationConfiguration: [{
classification: 'classification',
configurations: [eMREKSConfigurationProperty_],
properties: {
propertiesKey: 'properties',
},
}],
monitoringConfiguration: {
cloudWatchMonitoringConfiguration: {
logGroupName: 'logGroupName',
logStreamNamePrefix: 'logStreamNamePrefix',
},
containerLogRotationConfiguration: {
maxFilesToKeep: 123,
rotationSize: 'rotationSize',
},
persistentAppUi: 'persistentAppUi',
s3MonitoringConfiguration: {
logUri: 'logUri',
},
},
},
executionRoleArn: 'executionRoleArn',
name: 'name',
releaseLabel: 'releaseLabel',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
virtualClusterId: 'virtualClusterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Configuration | |
| execution | string | The execution role ARN for the managed endpoint. |
| name? | string | The name of the managed endpoint. |
| release | string | The Amazon EMR release label. |
| tags? | Cfn[] | An array of key-value pairs to apply to this managed endpoint. |
| type? | string | The type of the managed endpoint. |
| virtual | string | The ID of the virtual cluster for which the managed endpoint is created. |
configurationOverrides?
Type:
IResolvable | Configuration
(optional)
executionRoleArn?
Type:
string
(optional)
The execution role ARN for the managed endpoint.
name?
Type:
string
(optional)
The name of the managed endpoint.
releaseLabel?
Type:
string
(optional)
The Amazon EMR release label.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this managed endpoint.
type?
Type:
string
(optional)
The type of the managed endpoint.
virtualClusterId?
Type:
string
(optional)
The ID of the virtual cluster for which the managed endpoint is created.

.NET
Go
Java
Python
TypeScript