interface ProvisioningParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog.CfnCloudFormationProvisionedProductPropsMixin.ProvisioningParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalog#CfnCloudFormationProvisionedProductPropsMixin_ProvisioningParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalog.CfnCloudFormationProvisionedProductPropsMixin.ProvisioningParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalog.CfnCloudFormationProvisionedProductPropsMixin.ProvisioningParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalog » CfnCloudFormationProvisionedProductPropsMixin » ProvisioningParameterProperty |
Information about a parameter used to provision a product.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalog as servicecatalog } from '@aws-cdk/cfn-property-mixins';
const provisioningParameterProperty: servicecatalog.CfnCloudFormationProvisionedProductPropsMixin.ProvisioningParameterProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The parameter key. |
| value? | string | The parameter value. |
key?
Type:
string
(optional)
The parameter key.
value?
Type:
string
(optional)
The parameter value.

.NET
Go
Java
Python
TypeScript