Class: Aws::PcaConnectorAd::Types::GeneralFlagsV2
- Inherits:
-
Struct
- Object
- Struct
- Aws::PcaConnectorAd::Types::GeneralFlagsV2
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pcaconnectorad/types.rb
Overview
General flags for v2 template schema that defines if the template is for a machine or a user and if the template can be issued using autoenrollment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_enrollment ⇒ Boolean
Allows certificate issuance using autoenrollment.
-
#machine_type ⇒ Boolean
Defines if the template is for machines or users.
Instance Attribute Details
#auto_enrollment ⇒ Boolean
Allows certificate issuance using autoenrollment. Set to TRUE to allow autoenrollment.
1011 1012 1013 1014 1015 1016 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1011 class GeneralFlagsV2 < Struct.new( :auto_enrollment, :machine_type) SENSITIVE = [] include Aws::Structure end |
#machine_type ⇒ Boolean
Defines if the template is for machines or users. Set to TRUE if the template is for machines. Set to FALSE if the template is for users.
1011 1012 1013 1014 1015 1016 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 1011 class GeneralFlagsV2 < Struct.new( :auto_enrollment, :machine_type) SENSITIVE = [] include Aws::Structure end |