Class: Aws::IoT::Types::CreateKeysAndCertificateResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CreateKeysAndCertificateResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The output of the CreateKeysAndCertificate operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The ARN of the certificate.
-
#certificate_id ⇒ String
The ID of the certificate.
-
#certificate_pem ⇒ String
The certificate data, in PEM format.
-
#key_pair ⇒ Types::KeyPair
The generated key pair.
Instance Attribute Details
#certificate_arn ⇒ String
The ARN of the certificate.
3301 3302 3303 3304 3305 3306 3307 3308 |
# File 'lib/aws-sdk-iot/types.rb', line 3301 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end |
#certificate_id ⇒ String
The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate).
3301 3302 3303 3304 3305 3306 3307 3308 |
# File 'lib/aws-sdk-iot/types.rb', line 3301 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end |
#certificate_pem ⇒ String
The certificate data, in PEM format.
3301 3302 3303 3304 3305 3306 3307 3308 |
# File 'lib/aws-sdk-iot/types.rb', line 3301 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end |
#key_pair ⇒ Types::KeyPair
The generated key pair.
3301 3302 3303 3304 3305 3306 3307 3308 |
# File 'lib/aws-sdk-iot/types.rb', line 3301 class CreateKeysAndCertificateResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem, :key_pair) SENSITIVE = [] include Aws::Structure end |