interface ParameterDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnDistribution.ParameterDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistribution_ParameterDefinitionProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnDistribution.ParameterDefinitionProperty |
Python | aws_cdk.aws_cloudfront.CfnDistribution.ParameterDefinitionProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnDistribution » 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 { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const parameterDefinitionProperty: cloudfront.CfnDistribution.ParameterDefinitionProperty = {
definition: {
stringSchema: {
required: false,
// the properties below are optional
comment: 'comment',
defaultValue: 'defaultValue',
},
},
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
The value that you assigned to the parameter.
name
Type:
string
The name of the parameter.

.NET
Go
Java
Python
TypeScript