Class: Aws::PcaConnectorAd::Types::PrivateKeyFlagsV2
- Inherits:
-
Struct
- Object
- Struct
- Aws::PcaConnectorAd::Types::PrivateKeyFlagsV2
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pcaconnectorad/types.rb
Overview
Private key flags for v2 templates specify the client compatibility, if the private key can be exported, and if user input is required when using a private key.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_version ⇒ String
Defines the minimum client compatibility.
-
#exportable_key ⇒ Boolean
Allows the private key to be exported.
-
#strong_key_protection_required ⇒ Boolean
Require user input when using the private key for enrollment.
Instance Attribute Details
#client_version ⇒ String
Defines the minimum client compatibility.
1760 1761 1762 1763 1764 1765 1766 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1760 class PrivateKeyFlagsV2 < Struct.new( :client_version, :exportable_key, :strong_key_protection_required) SENSITIVE = [] include Aws::Structure end |
#exportable_key ⇒ Boolean
Allows the private key to be exported.
1760 1761 1762 1763 1764 1765 1766 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1760 class PrivateKeyFlagsV2 < Struct.new( :client_version, :exportable_key, :strong_key_protection_required) SENSITIVE = [] include Aws::Structure end |
#strong_key_protection_required ⇒ Boolean
Require user input when using the private key for enrollment.
1760 1761 1762 1763 1764 1765 1766 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1760 class PrivateKeyFlagsV2 < Struct.new( :client_version, :exportable_key, :strong_key_protection_required) SENSITIVE = [] include Aws::Structure end |