interface SageMakerPipelineParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.SageMakerPipelineParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_SageMakerPipelineParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.SageMakerPipelineParameterProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.SageMakerPipelineParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » SageMakerPipelineParameterProperty |
Name/Value pair of a parameter to start execution of a SageMaker AI Model Building Pipeline.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const sageMakerPipelineParameterProperty: pipes_mixins.CfnPipePropsMixin.SageMakerPipelineParameterProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Name of parameter to start execution of a SageMaker AI Model Building Pipeline. |
| value? | string | Value of parameter to start execution of a SageMaker AI Model Building Pipeline. |
name?
Type:
string
(optional)
Name of parameter to start execution of a SageMaker AI Model Building Pipeline.
value?
Type:
string
(optional)
Value of parameter to start execution of a SageMaker AI Model Building Pipeline.

.NET
Go
Java
Python
TypeScript