Class CfnEndpoint
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.emrcontainers.CfnEndpoint
- All Implemented Interfaces:
IInspectable,IEndpointRef,IEnvironmentAware,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)",
date="2026-02-03T13:58:23.397Z")
@Stability(Stable)
public class CfnEndpoint
extends CfnResource
implements IInspectable, IEndpointRef, ITaggableV2
Resource Schema of AWS::EMRContainers::Endpoint Type.
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_;
CfnEndpoint cfnEndpoint = CfnEndpoint.Builder.create(this, "MyCfnEndpoint")
.executionRoleArn("executionRoleArn")
.releaseLabel("releaseLabel")
.type("type")
.virtualClusterId("virtualClusterId")
// the properties below are optional
.configurationOverrides(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())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnEndpoint.static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.emrcontainers.IEndpointRef
IEndpointRef.Jsii$Default, IEndpointRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnEndpoint(software.amazon.jsii.JsiiObjectRef objRef) CfnEndpoint(software.constructs.Construct scope, String id, CfnEndpointProps props) Create a newAWS::EMRContainers::Endpoint. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringarnForEndpoint(IEndpointRef resource) The ARN of the managed endpoint.The date and time when the managed endpoint was created.The reason for a failed managed endpoint.The ID of the managed endpoint.The security group associated with the managed endpoint.The server URL of the managed endpoint.The state of the managed endpoint.Additional details about the state of the managed endpoint.Tag Manager which manages the tags for this resource.Returns union: eitherIResolvableorCfnEndpoint.ConfigurationOverridesPropertyA reference to a Endpoint resource.The execution role ARN for the managed endpoint.getName()The name of the managed endpoint.The Amazon EMR release label.getTags()An array of key-value pairs to apply to this managed endpoint.getType()The type of the managed endpoint.The ID of the virtual cluster for which the managed endpoint is created.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.static BooleanChecks whether the given object is a CfnEndpoint.renderProperties(Map<String, Object> props) voidvoidvoidsetExecutionRoleArn(String value) The execution role ARN for the managed endpoint.voidThe name of the managed endpoint.voidsetReleaseLabel(String value) The Amazon EMR release label.voidAn array of key-value pairs to apply to this managed endpoint.voidThe type of the managed endpoint.voidsetVirtualClusterId(String value) The ID of the virtual cluster for which the managed endpoint is created.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnEndpoint
protected CfnEndpoint(software.amazon.jsii.JsiiObjectRef objRef) -
CfnEndpoint
protected CfnEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnEndpoint
@Stability(Stable) public CfnEndpoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnEndpointProps props) Create a newAWS::EMRContainers::Endpoint.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
arnForEndpoint
- Parameters:
resource- This parameter is required.
-
isCfnEndpoint
Checks whether the given object is a CfnEndpoint.- Parameters:
x- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The ARN of the managed endpoint. -
getAttrCertificateAuthority
-
getAttrCreatedAt
The date and time when the managed endpoint was created. -
getAttrFailureReason
The reason for a failed managed endpoint. -
getAttrId
The ID of the managed endpoint. -
getAttrSecurityGroup
The security group associated with the managed endpoint. -
getAttrServerUrl
The server URL of the managed endpoint. -
getAttrState
The state of the managed endpoint. -
getAttrStateDetails
Additional details about the state of the managed endpoint. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getEndpointRef
A reference to a Endpoint resource.- Specified by:
getEndpointRefin interfaceIEndpointRef
-
getExecutionRoleArn
The execution role ARN for the managed endpoint. -
setExecutionRoleArn
The execution role ARN for the managed endpoint. -
getReleaseLabel
The Amazon EMR release label. -
setReleaseLabel
The Amazon EMR release label. -
getType
The type of the managed endpoint. -
setType
The type of the managed endpoint. -
getVirtualClusterId
The ID of the virtual cluster for which the managed endpoint is created. -
setVirtualClusterId
The ID of the virtual cluster for which the managed endpoint is created. -
getConfigurationOverrides
Returns union: eitherIResolvableorCfnEndpoint.ConfigurationOverridesProperty -
setConfigurationOverrides
-
setConfigurationOverrides
@Stability(Stable) public void setConfigurationOverrides(@Nullable CfnEndpoint.ConfigurationOverridesProperty value) -
getName
The name of the managed endpoint. -
setName
The name of the managed endpoint. -
getTags
An array of key-value pairs to apply to this managed endpoint. -
setTags
An array of key-value pairs to apply to this managed endpoint.
-