interface ParameterDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionPropsMixin.ParameterDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionPropsMixin_ParameterDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionPropsMixin.ParameterDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionPropsMixin.ParameterDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnDistributionPropsMixin » ParameterDefinitionProperty |
A list of parameter values to add to the resource.
A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const parameterDefinitionProperty: cloudfront_mixins.CfnDistributionPropsMixin.ParameterDefinitionProperty = {
definition: {
stringSchema: {
comment: 'comment',
defaultValue: 'defaultValue',
required: false,
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| definition? | IResolvable | Definition | The value that you assigned to the parameter. |
| name? | string | The name of the parameter. |
definition?
Type:
IResolvable | Definition
(optional)
The value that you assigned to the parameter.
name?
Type:
string
(optional)
The name of the parameter.

.NET
Go
Java
Python
TypeScript