interface SageMakerPipelineParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Scheduler.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscheduler#CfnSchedulePropsMixin_SageMakerPipelineParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.scheduler.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_scheduler.CfnSchedulePropsMixin.SageMakerPipelineParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scheduler » 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 { aws_scheduler as scheduler } from '@aws-cdk/cfn-property-mixins';
const sageMakerPipelineParameterProperty: scheduler.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