Show / Hide Table of Contents

Class CfnListenerRule.JwtValidationActionAdditionalClaimProperty

Information about an additional claim to validate.

Inheritance
object
CfnListenerRule.JwtValidationActionAdditionalClaimProperty
Implements
CfnListenerRule.IJwtValidationActionAdditionalClaimProperty
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.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnListenerRule.JwtValidationActionAdditionalClaimProperty : CfnListenerRule.IJwtValidationActionAdditionalClaimProperty
Syntax (vb)
Public Class CfnListenerRule.JwtValidationActionAdditionalClaimProperty Implements CfnListenerRule.IJwtValidationActionAdditionalClaimProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.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.ElasticLoadBalancingV2;

             var jwtValidationActionAdditionalClaimProperty = new JwtValidationActionAdditionalClaimProperty {
                 Format = "format",
                 Name = "name",
                 Values = new [] { "values" }
             };

Synopsis

Constructors

JwtValidationActionAdditionalClaimProperty()

Information about an additional claim to validate.

Properties

Format

The format of the claim value.

Name

The name of the claim.

Values

The claim value.

Constructors

JwtValidationActionAdditionalClaimProperty()

Information about an additional claim to validate.

public JwtValidationActionAdditionalClaimProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.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.ElasticLoadBalancingV2;

             var jwtValidationActionAdditionalClaimProperty = new JwtValidationActionAdditionalClaimProperty {
                 Format = "format",
                 Name = "name",
                 Values = new [] { "values" }
             };

Properties

Format

The format of the claim value.

public string Format { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.html#cfn-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim-format

Name

The name of the claim.

public string Name { get; set; }
Property Value

string

Remarks

You can't specify exp , iss , nbf , or iat because we validate them by default.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.html#cfn-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim-name

Values

The claim value.

public string[] Values { get; set; }
Property Value

string[]

Remarks

The maximum size of the list is 10. Each value can be up to 256 characters in length. If the format is space-separated-values , the values can't include spaces.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.html#cfn-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim-values

Implements

CfnListenerRule.IJwtValidationActionAdditionalClaimProperty
Back to top Generated by DocFX