interface ParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnDistributionTenantPropsMixin.ParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnDistributionTenantPropsMixin_ParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnDistributionTenantPropsMixin.ParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnDistributionTenantPropsMixin.ParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnDistributionTenantPropsMixin » 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/cfn-property-mixins';
const parameterProperty: cloudfront.CfnDistributionTenantPropsMixin.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.

.NET
Go
Java
Python
TypeScript