Class: Aws::PcaConnectorAd::Types::KeyUsageFlags

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb

Overview

The key usage flags represent the purpose (e.g., encipherment, signature) of the key contained in the certificate.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_enciphermentBoolean

DataEncipherment is asserted when the subject public key is used for directly enciphering raw user data without the use of an intermediate symmetric cipher.

Returns:

  • (Boolean)


1295
1296
1297
1298
1299
1300
1301
1302
1303
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1295

class KeyUsageFlags < Struct.new(
  :data_encipherment,
  :digital_signature,
  :key_agreement,
  :key_encipherment,
  :non_repudiation)
  SENSITIVE = []
  include Aws::Structure
end

#digital_signatureBoolean

The digitalSignature is asserted when the subject public key is used for verifying digital signatures.

Returns:

  • (Boolean)


1295
1296
1297
1298
1299
1300
1301
1302
1303
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1295

class KeyUsageFlags < Struct.new(
  :data_encipherment,
  :digital_signature,
  :key_agreement,
  :key_encipherment,
  :non_repudiation)
  SENSITIVE = []
  include Aws::Structure
end

#key_agreementBoolean

KeyAgreement is asserted when the subject public key is used for key agreement.

Returns:

  • (Boolean)


1295
1296
1297
1298
1299
1300
1301
1302
1303
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1295

class KeyUsageFlags < Struct.new(
  :data_encipherment,
  :digital_signature,
  :key_agreement,
  :key_encipherment,
  :non_repudiation)
  SENSITIVE = []
  include Aws::Structure
end

#key_enciphermentBoolean

KeyEncipherment is asserted when the subject public key is used for enciphering private or secret keys, i.e., for key transport.

Returns:

  • (Boolean)


1295
1296
1297
1298
1299
1300
1301
1302
1303
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1295

class KeyUsageFlags < Struct.new(
  :data_encipherment,
  :digital_signature,
  :key_agreement,
  :key_encipherment,
  :non_repudiation)
  SENSITIVE = []
  include Aws::Structure
end

#non_repudiationBoolean

NonRepudiation is asserted when the subject public key is used to verify digital signatures.

Returns:

  • (Boolean)


1295
1296
1297
1298
1299
1300
1301
1302
1303
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1295

class KeyUsageFlags < Struct.new(
  :data_encipherment,
  :digital_signature,
  :key_agreement,
  :key_encipherment,
  :non_repudiation)
  SENSITIVE = []
  include Aws::Structure
end