interface SageMakerPipelineParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnSchedulePropsMixin_SageMakerPipelineParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnSchedulePropsMixin » SageMakerPipelineParameterProperty |
The name and value pair of a parameter to use to start execution of a SageMaker 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 scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const sageMakerPipelineParameterProperty: scheduler_mixins.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Name of parameter to start execution of a SageMaker Model Building Pipeline. |
| value? | string | Value of parameter to start execution of a SageMaker Model Building Pipeline. |
name?
Type:
string
(optional)
Name of parameter to start execution of a SageMaker Model Building Pipeline.
value?
Type:
string
(optional)
Value of parameter to start execution of a SageMaker Model Building Pipeline.

.NET
Go
Java
Python
TypeScript