interface CfnStackParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnProjectPropsMixin.CfnStackParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnProjectPropsMixin_CfnStackParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnProjectPropsMixin.CfnStackParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnProjectPropsMixin.CfnStackParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnProjectPropsMixin » CfnStackParameterProperty |
A key-value pair representing a parameter used in the CloudFormation stack.
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 cfnStackParameterProperty: sagemaker.CfnProjectPropsMixin.CfnStackParameterProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The name of the CloudFormation parameter. |
| value? | string | The value of the CloudFormation parameter. |
key?
Type:
string
(optional)
The name of the CloudFormation parameter.
value?
Type:
string
(optional)
The value of the CloudFormation parameter.

.NET
Go
Java
Python
TypeScript