Interface CfnEndpoint.ConfigurationOverridesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpoint.ConfigurationOverridesProperty.Jsii$Proxy
- Enclosing class:
CfnEndpoint
@Stability(Stable)
public static interface CfnEndpoint.ConfigurationOverridesProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.emrcontainers.*;
EMREKSConfigurationProperty eMREKSConfigurationProperty_;
ConfigurationOverridesProperty configurationOverridesProperty = ConfigurationOverridesProperty.builder()
.applicationConfiguration(List.of(EMREKSConfigurationProperty.builder()
.classification("classification")
// the properties below are optional
.configurations(List.of(eMREKSConfigurationProperty_))
.properties(Map.of(
"propertiesKey", "properties"))
.build()))
.monitoringConfiguration(MonitoringConfigurationProperty.builder()
.cloudWatchMonitoringConfiguration(CloudWatchMonitoringConfigurationProperty.builder()
.logGroupName("logGroupName")
// the properties below are optional
.logStreamNamePrefix("logStreamNamePrefix")
.build())
.containerLogRotationConfiguration(ContainerLogRotationConfigurationProperty.builder()
.maxFilesToKeep(123)
.rotationSize("rotationSize")
.build())
.persistentAppUi("persistentAppUi")
.s3MonitoringConfiguration(S3MonitoringConfigurationProperty.builder()
.logUri("logUri")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpoint.ConfigurationOverridesPropertystatic final classAn implementation forCfnEndpoint.ConfigurationOverridesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnEndpoint.EMREKSConfigurationProperty>default ObjectReturns union: eitherIResolvableorCfnEndpoint.MonitoringConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationConfiguration
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnEndpoint.EMREKSConfigurationProperty>- See Also:
-
getMonitoringConfiguration
Returns union: eitherIResolvableorCfnEndpoint.MonitoringConfigurationProperty- See Also:
-
builder
-