Interface CfnInferenceExperiment.EndpointMetadataProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInferenceExperiment.EndpointMetadataProperty.Jsii$Proxy
Enclosing class:
CfnInferenceExperiment

@Stability(Stable) public static interface CfnInferenceExperiment.EndpointMetadataProperty extends software.amazon.jsii.JsiiSerializable
The metadata of the endpoint.

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.sagemaker.*;
 EndpointMetadataProperty endpointMetadataProperty = EndpointMetadataProperty.builder()
         .endpointName("endpointName")
         // the properties below are optional
         .endpointConfigName("endpointConfigName")
         .endpointStatus("endpointStatus")
         .build();