interface ParameterProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.CloudFront.CfnDistributionTenant.ParameterProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistributionTenant_ParameterProperty | 
|  Java | software.amazon.awscdk.services.cloudfront.CfnDistributionTenant.ParameterProperty | 
|  Python | aws_cdk.aws_cloudfront.CfnDistributionTenant.ParameterProperty | 
|  TypeScript | aws-cdk-lib»aws_cloudfront»CfnDistributionTenant»ParameterProperty | 
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 parameterProperty: cloudfront.CfnDistributionTenant.ParameterProperty = {
  name: 'name',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name? | string | The parameter name. | 
| value? | string | The parameter value. | 
name?
Type:
string
(optional)
The parameter name.
value?
Type:
string
(optional)
The parameter value.
