interface EndpointMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnInferenceExperimentPropsMixin_EndpointMetadataProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnInferenceExperimentPropsMixin.EndpointMetadataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const endpointMetadataProperty: sagemaker_mixins.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