Class: Aws::ElasticLoadBalancingV2::Types::JwtValidationActionAdditionalClaim
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::JwtValidationActionAdditionalClaim
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about an additional claim to validate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#format ⇒ String
The format of the claim value.
-
#name ⇒ String
The name of the claim.
-
#values ⇒ Array<String>
The claim value.
Instance Attribute Details
#format ⇒ String
The format of the claim value.
2222 2223 2224 2225 2226 2227 2228 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2222 class JwtValidationActionAdditionalClaim < Struct.new( :format, :name, :values) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the claim. You can’t specify ‘exp`, `iss`, `nbf`, or `iat` because we validate them by default.
2222 2223 2224 2225 2226 2227 2228 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2222 class JwtValidationActionAdditionalClaim < Struct.new( :format, :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The claim value. 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.
2222 2223 2224 2225 2226 2227 2228 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2222 class JwtValidationActionAdditionalClaim < Struct.new( :format, :name, :values) SENSITIVE = [] include Aws::Structure end |