Class: Aws::IoT::Types::ListPrincipalPoliciesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListPrincipalPoliciesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The input for the ListPrincipalPolicies operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ascending_order ⇒ Boolean
Specifies the order for results.
-
#marker ⇒ String
The marker for the next set of results.
-
#page_size ⇒ Integer
The result page size.
-
#principal ⇒ String
The principal.
Instance Attribute Details
#ascending_order ⇒ Boolean
Specifies the order for results. If true, results are returned in ascending creation order.
10882 10883 10884 10885 10886 10887 10888 10889 |
# File 'lib/aws-sdk-iot/types.rb', line 10882 class ListPrincipalPoliciesRequest < Struct.new( :principal, :marker, :page_size, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
The marker for the next set of results.
10882 10883 10884 10885 10886 10887 10888 10889 |
# File 'lib/aws-sdk-iot/types.rb', line 10882 class ListPrincipalPoliciesRequest < Struct.new( :principal, :marker, :page_size, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#page_size ⇒ Integer
The result page size.
10882 10883 10884 10885 10886 10887 10888 10889 |
# File 'lib/aws-sdk-iot/types.rb', line 10882 class ListPrincipalPoliciesRequest < Struct.new( :principal, :marker, :page_size, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#principal ⇒ String
The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).
10882 10883 10884 10885 10886 10887 10888 10889 |
# File 'lib/aws-sdk-iot/types.rb', line 10882 class ListPrincipalPoliciesRequest < Struct.new( :principal, :marker, :page_size, :ascending_order) SENSITIVE = [] include Aws::Structure end |