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