Interface CfnEndpointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:20.368Z")
@Stability(Stable)
public interface CfnEndpointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEndpointPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.emrcontainers.*;
EMREKSConfigurationProperty eMREKSConfigurationProperty_;
CfnEndpointMixinProps cfnEndpointMixinProps = CfnEndpointMixinProps.builder()
.configurationOverrides(ConfigurationOverridesProperty.builder()
.applicationConfiguration(List.of(EMREKSConfigurationProperty.builder()
.classification("classification")
.configurations(List.of(eMREKSConfigurationProperty_))
.properties(Map.of(
"propertiesKey", "properties"))
.build()))
.monitoringConfiguration(MonitoringConfigurationProperty.builder()
.cloudWatchMonitoringConfiguration(CloudWatchMonitoringConfigurationProperty.builder()
.logGroupName("logGroupName")
.logStreamNamePrefix("logStreamNamePrefix")
.build())
.containerLogRotationConfiguration(ContainerLogRotationConfigurationProperty.builder()
.maxFilesToKeep(123)
.rotationSize("rotationSize")
.build())
.persistentAppUi("persistentAppUi")
.s3MonitoringConfiguration(S3MonitoringConfigurationProperty.builder()
.logUri("logUri")
.build())
.build())
.build())
.executionRoleArn("executionRoleArn")
.name("name")
.releaseLabel("releaseLabel")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.virtualClusterId("virtualClusterId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointMixinPropsstatic final classAn implementation forCfnEndpointMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnEndpointPropsMixin.ConfigurationOverridesPropertydefault StringThe execution role ARN for the managed endpoint.default StringgetName()The name of the managed endpoint.default StringThe Amazon EMR release label.getTags()An array of key-value pairs to apply to this managed endpoint.default StringgetType()The type of the managed endpoint.default StringThe ID of the virtual cluster for which the managed endpoint is created.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigurationOverrides
Returns union: eitherIResolvableorCfnEndpointPropsMixin.ConfigurationOverridesProperty- See Also:
-
getExecutionRoleArn
The execution role ARN for the managed endpoint.- See Also:
-
getName
The name of the managed endpoint.- See Also:
-
getReleaseLabel
The Amazon EMR release label.- See Also:
-
getTags
An array of key-value pairs to apply to this managed endpoint.- See Also:
-
getType
The type of the managed endpoint.- See Also:
-
getVirtualClusterId
The ID of the virtual cluster for which the managed endpoint is created.- See Also:
-
builder
- Returns:
- a
CfnEndpointMixinProps.BuilderofCfnEndpointMixinProps
-