Class: Aws::PcaConnectorAd::Types::GeneralFlagsV3

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

Overview

General flags for v3 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

Instance Attribute Details

#auto_enrollmentBoolean

Allows certificate issuance using autoenrollment. Set to TRUE to allow autoenrollment.

Returns:

  • (Boolean)


1034
1035
1036
1037
1038
1039
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1034

class GeneralFlagsV3 < Struct.new(
  :auto_enrollment,
  :machine_type)
  SENSITIVE = []
  include Aws::Structure
end

#machine_typeBoolean

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

Returns:

  • (Boolean)


1034
1035
1036
1037
1038
1039
# File 'gems/aws-sdk-pcaconnectorad/lib/aws-sdk-pcaconnectorad/types.rb', line 1034

class GeneralFlagsV3 < Struct.new(
  :auto_enrollment,
  :machine_type)
  SENSITIVE = []
  include Aws::Structure
end