Class CfnDistributionTenant.ParameterProperty
A list of parameter values to add to the resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDistributionTenant.ParameterProperty : CfnDistributionTenant.IParameterProperty
Syntax (vb)
Public Class CfnDistributionTenant.ParameterProperty Implements CfnDistributionTenant.IParameterProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var parameterProperty = new ParameterProperty {
Name = "name",
Value = "value"
};
Synopsis
Constructors
ParameterProperty() | A list of parameter values to add to the resource. |
Properties
Name | The parameter name. |
Value | The parameter value. |
Constructors
ParameterProperty()
A list of parameter values to add to the resource.
public ParameterProperty()
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var parameterProperty = new ParameterProperty {
Name = "name",
Value = "value"
};
Properties
Name
The parameter name.
public string? Name { get; set; }
Property Value
Remarks
Value
The parameter value.
public string? Value { get; set; }