Show / Hide Table of Contents

Class CfnDistributionTenant.ParameterProperty

A list of parameter values to add to the resource.

Inheritance
object
CfnDistributionTenant.ParameterProperty
Implements
CfnDistributionTenant.IParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html#cfn-cloudfront-distributiontenant-parameter-name

Value

The parameter value.

public string? Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html#cfn-cloudfront-distributiontenant-parameter-value

Implements

CfnDistributionTenant.IParameterProperty
Back to top Generated by DocFX