Class: Aws::WorkLink::Types::ListWebsiteAuthorizationProvidersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkLink::Types::ListWebsiteAuthorizationProvidersRequest
- Defined in:
- gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb
Overview
Note:
When making an API call, you may pass ListWebsiteAuthorizationProvidersRequest data as a hash:
{
fleet_arn: "FleetArn", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fleet_arn ⇒ String
The ARN of the fleet.
-
#max_results ⇒ Integer
The maximum number of results to be included in the next page.
-
#next_token ⇒ String
The pagination token to use to retrieve the next page of results for this operation.
Instance Attribute Details
#fleet_arn ⇒ String
The ARN of the fleet.
1025 1026 1027 1028 1029 1030 1031 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 1025 class ListWebsiteAuthorizationProvidersRequest < Struct.new( :fleet_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be included in the next page.
1025 1026 1027 1028 1029 1030 1031 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 1025 class ListWebsiteAuthorizationProvidersRequest < Struct.new( :fleet_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
1025 1026 1027 1028 1029 1030 1031 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 1025 class ListWebsiteAuthorizationProvidersRequest < Struct.new( :fleet_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |