Class: Aws::IoT::Types::RegisterCertificateWithoutCARequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::RegisterCertificateWithoutCARequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass RegisterCertificateWithoutCARequest data as a hash:
{
certificate_pem: "CertificatePem", # required
status: "ACTIVE", # accepts ACTIVE, INACTIVE, REVOKED, PENDING_TRANSFER, REGISTER_INACTIVE, PENDING_ACTIVATION
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_pem ⇒ String
The certificate data, in PEM format.
-
#status ⇒ String
The status of the register certificate request.
Instance Attribute Details
#certificate_pem ⇒ String
The certificate data, in PEM format.
15225 15226 15227 15228 15229 15230 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15225 class RegisterCertificateWithoutCARequest < Struct.new( :certificate_pem, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the register certificate request.
15225 15226 15227 15228 15229 15230 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15225 class RegisterCertificateWithoutCARequest < Struct.new( :certificate_pem, :status) SENSITIVE = [] include Aws::Structure end |