Class: Aws::IoT::Types::RegisterCertificateRequest

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

Overview

The input to the RegisterCertificate operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ca_certificate_pemString

The CA certificate used to sign the device certificate being registered.

Returns:

  • (String)


12901
12902
12903
12904
12905
12906
12907
12908
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12901

class RegisterCertificateRequest < Struct.new(
  :certificate_pem,
  :ca_certificate_pem,
  :set_as_active,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#certificate_pemString

The certificate data, in PEM format.

Returns:

  • (String)


12901
12902
12903
12904
12905
12906
12907
12908
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12901

class RegisterCertificateRequest < Struct.new(
  :certificate_pem,
  :ca_certificate_pem,
  :set_as_active,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#set_as_activeBoolean

A boolean value that specifies if the certificate is set to active.

Valid values: ACTIVE | INACTIVE

Returns:

  • (Boolean)


12901
12902
12903
12904
12905
12906
12907
12908
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12901

class RegisterCertificateRequest < Struct.new(
  :certificate_pem,
  :ca_certificate_pem,
  :set_as_active,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the register certificate request. Valid values that you can use include ACTIVE, INACTIVE, and REVOKED.

Returns:

  • (String)


12901
12902
12903
12904
12905
12906
12907
12908
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12901

class RegisterCertificateRequest < Struct.new(
  :certificate_pem,
  :ca_certificate_pem,
  :set_as_active,
  :status)
  SENSITIVE = []
  include Aws::Structure
end