interface ParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionTenantPropsMixin.ParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionTenantPropsMixin_ParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionTenantPropsMixin.ParameterProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionTenantPropsMixin.ParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const parameterProperty: cloudfront_mixins.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