Class: Aws::PcaConnectorAd::Types::KeyUsagePropertyFlags
- Inherits:
-
Struct
- Object
- Struct
- Aws::PcaConnectorAd::Types::KeyUsagePropertyFlags
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pcaconnectorad/types.rb
Overview
Specifies key usage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#decrypt ⇒ Boolean
Allows key for encryption and decryption.
-
#key_agreement ⇒ Boolean
Allows key exchange without encryption.
-
#sign ⇒ Boolean
Allow key use for digital signature.
Instance Attribute Details
#decrypt ⇒ Boolean
Allows key for encryption and decryption.
1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1354 class KeyUsagePropertyFlags < Struct.new( :decrypt, :key_agreement, :sign) SENSITIVE = [] include Aws::Structure end |
#key_agreement ⇒ Boolean
Allows key exchange without encryption.
1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1354 class KeyUsagePropertyFlags < Struct.new( :decrypt, :key_agreement, :sign) SENSITIVE = [] include Aws::Structure end |
#sign ⇒ Boolean
Allow key use for digital signature.
1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1354 class KeyUsagePropertyFlags < Struct.new( :decrypt, :key_agreement, :sign) SENSITIVE = [] include Aws::Structure end |