Class: Aws::PaymentCryptographyData::Types::As2805KekValidationType

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-paymentcryptographydata/types.rb

Overview

Note:

As2805KekValidationType is a union - when making an API calls you must set exactly one of the members.

Parameter information for generating a random key for KEK validation to perform node-to-node initialization.

Defined Under Namespace

Classes: KekValidationRequest, KekValidationResponse, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kek_validation_requestTypes::KekValidationRequest

Parameter information for generating a KEK validation request during node-to-node initialization.



124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 124

class As2805KekValidationType < Struct.new(
  :kek_validation_request,
  :kek_validation_response,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class KekValidationRequest < As2805KekValidationType; end
  class KekValidationResponse < As2805KekValidationType; end
  class Unknown < As2805KekValidationType; end
end

#kek_validation_responseTypes::KekValidationResponse

Parameter information for generating a KEK validation response during node-to-node initialization.



124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 124

class As2805KekValidationType < Struct.new(
  :kek_validation_request,
  :kek_validation_response,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class KekValidationRequest < As2805KekValidationType; end
  class KekValidationResponse < As2805KekValidationType; end
  class Unknown < As2805KekValidationType; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



124
125
126
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 124

def unknown
  @unknown
end