@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.807Z") @Stability(value=Stable) public interface CfnEndpointProps 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.sagemaker.*;
CfnEndpointProps cfnEndpointProps = CfnEndpointProps.builder()
.endpointConfigName("endpointConfigName")
// the properties below are optional
.deploymentConfig(DeploymentConfigProperty.builder()
.blueGreenUpdatePolicy(BlueGreenUpdatePolicyProperty.builder()
.trafficRoutingConfiguration(TrafficRoutingConfigProperty.builder()
.type("type")
// the properties below are optional
.canarySize(CapacitySizeProperty.builder()
.type("type")
.value(123)
.build())
.linearStepSize(CapacitySizeProperty.builder()
.type("type")
.value(123)
.build())
.waitIntervalInSeconds(123)
.build())
// the properties below are optional
.maximumExecutionTimeoutInSeconds(123)
.terminationWaitInSeconds(123)
.build())
// the properties below are optional
.autoRollbackConfiguration(AutoRollbackConfigProperty.builder()
.alarms(List.of(AlarmProperty.builder()
.alarmName("alarmName")
.build()))
.build())
.build())
.endpointName("endpointName")
.excludeRetainedVariantProperties(List.of(VariantPropertyProperty.builder()
.variantPropertyType("variantPropertyType")
.build()))
.retainAllVariantProperties(false)
.retainDeploymentConfig(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointProps.Builder
A builder for
CfnEndpointProps |
static class |
CfnEndpointProps.Jsii$Proxy
An implementation for
CfnEndpointProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointProps.Builder |
builder() |
default Object |
getDeploymentConfig()
`AWS::SageMaker::Endpoint.DeploymentConfig`.
|
String |
getEndpointConfigName()
`AWS::SageMaker::Endpoint.EndpointConfigName`.
|
default String |
getEndpointName()
`AWS::SageMaker::Endpoint.EndpointName`.
|
default Object |
getExcludeRetainedVariantProperties()
`AWS::SageMaker::Endpoint.ExcludeRetainedVariantProperties`.
|
default Object |
getRetainAllVariantProperties()
`AWS::SageMaker::Endpoint.RetainAllVariantProperties`.
|
default Object |
getRetainDeploymentConfig()
`AWS::SageMaker::Endpoint.RetainDeploymentConfig`.
|
default List<CfnTag> |
getTags()
`AWS::SageMaker::Endpoint.Tags`.
|
@Stability(value=Stable) @Nullable default Object getDeploymentConfig()
@Stability(value=Stable) @NotNull String getEndpointConfigName()
@Stability(value=Stable) @Nullable default String getEndpointName()
@Stability(value=Stable) @Nullable default Object getExcludeRetainedVariantProperties()
@Stability(value=Stable) @Nullable default Object getRetainAllVariantProperties()
@Stability(value=Stable) @Nullable default Object getRetainDeploymentConfig()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnEndpointProps.Builder builder()
CfnEndpointProps.Builder of CfnEndpointPropsCopyright © 2021. All rights reserved.