Class: Aws::ElasticLoadBalancingV2::Types::JwtValidationActionAdditionalClaim

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#formatString

The format of the claim value.

Returns:

  • (String)


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

#nameString

The name of the claim. You can’t specify ‘exp`, `iss`, `nbf`, or `iat` because we validate them by default.

Returns:

  • (String)


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

#valuesArray<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.

Returns:

  • (Array<String>)


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