Class: Aws::IoT::Types::ListCertificatesByCARequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListCertificatesByCARequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The input to the ListCertificatesByCA operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ascending_order ⇒ Boolean
Specifies the order for results.
-
#ca_certificate_id ⇒ String
The ID of the CA certificate.
-
#marker ⇒ String
The marker for the next set of results.
-
#page_size ⇒ Integer
The result page size.
Instance Attribute Details
#ascending_order ⇒ Boolean
Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.
9894 9895 9896 9897 9898 9899 9900 9901 |
# File 'lib/aws-sdk-iot/types.rb', line 9894 class ListCertificatesByCARequest < Struct.new( :ca_certificate_id, :page_size, :marker, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#ca_certificate_id ⇒ String
The ID of the CA certificate. This operation will list all registered device certificate that were signed by this CA certificate.
9894 9895 9896 9897 9898 9899 9900 9901 |
# File 'lib/aws-sdk-iot/types.rb', line 9894 class ListCertificatesByCARequest < Struct.new( :ca_certificate_id, :page_size, :marker, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
The marker for the next set of results.
9894 9895 9896 9897 9898 9899 9900 9901 |
# File 'lib/aws-sdk-iot/types.rb', line 9894 class ListCertificatesByCARequest < Struct.new( :ca_certificate_id, :page_size, :marker, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#page_size ⇒ Integer
The result page size.
9894 9895 9896 9897 9898 9899 9900 9901 |
# File 'lib/aws-sdk-iot/types.rb', line 9894 class ListCertificatesByCARequest < Struct.new( :ca_certificate_id, :page_size, :marker, :ascending_order) SENSITIVE = [] include Aws::Structure end |