Class: Aws::IoT::Types::CreateCertificateFromCsrResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CreateCertificateFromCsrResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The output from the CreateCertificateFromCsr operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate.
-
#certificate_id ⇒ String
The ID of the certificate.
-
#certificate_pem ⇒ String
The certificate data, in PEM format.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
2433 2434 2435 2436 2437 2438 2439 |
# File 'lib/aws-sdk-iot/types.rb', line 2433 class CreateCertificateFromCsrResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem) SENSITIVE = [] include Aws::Structure end |
#certificate_id ⇒ String
The ID of the certificate. Certificate management operations only take a certificateId.
2433 2434 2435 2436 2437 2438 2439 |
# File 'lib/aws-sdk-iot/types.rb', line 2433 class CreateCertificateFromCsrResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem) SENSITIVE = [] include Aws::Structure end |
#certificate_pem ⇒ String
The certificate data, in PEM format.
2433 2434 2435 2436 2437 2438 2439 |
# File 'lib/aws-sdk-iot/types.rb', line 2433 class CreateCertificateFromCsrResponse < Struct.new( :certificate_arn, :certificate_id, :certificate_pem) SENSITIVE = [] include Aws::Structure end |