interface EndpointMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnInferenceExperimentPropsMixin_EndpointMetadataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnInferenceExperimentPropsMixin » EndpointMetadataProperty |
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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const endpointMetadataProperty: sagemaker.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty = {
endpointConfigName: 'endpointConfigName',
endpointName: 'endpointName',
endpointStatus: 'endpointStatus',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | The name of the endpoint configuration. |
| endpoint | string | The name of the endpoint. |
| endpoint | string | The status of the endpoint. |
endpointConfigName?
Type:
string
(optional)
The name of the endpoint configuration.
endpointName?
Type:
string
(optional)
The name of the endpoint.
endpointStatus?
Type:
string
(optional)
The status of the endpoint.

.NET
Go
Java
Python
TypeScript