interface ProvisioningParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnProjectPropsMixin.ProvisioningParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnProjectPropsMixin_ProvisioningParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnProjectPropsMixin.ProvisioningParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnProjectPropsMixin.ProvisioningParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnProjectPropsMixin » ProvisioningParameterProperty |
A key value pair used when you provision a project as a service catalog product.
For information, see What is AWS Service Catalog .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const provisioningParameterProperty: sagemaker.CfnProjectPropsMixin.ProvisioningParameterProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key that identifies a provisioning parameter. |
| value? | string | The value of the provisioning parameter. |
key?
Type:
string
(optional)
The key that identifies a provisioning parameter.
value?
Type:
string
(optional)
The value of the provisioning parameter.

.NET
Go
Java
Python
TypeScript