Class: Aws::EKS::Types::ListAccessPoliciesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListAccessPoliciesResponse
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_policies ⇒ Array<Types::AccessPolicy>
The list of available access policies.
-
#next_token ⇒ String
The
nextTokenvalue returned from a previous paginated request, wheremaxResultswas used and the results exceeded the value of that parameter.
Instance Attribute Details
#access_policies ⇒ Array<Types::AccessPolicy>
The list of available access policies. You can't view the contents of an access policy using the API. To view the contents, see Access policy permissions in the Amazon EKS User Guide.
5108 5109 5110 5111 5112 5113 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5108 class ListAccessPoliciesResponse < Struct.new( :access_policies, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken value returned from a previous paginated request,
where maxResults was used and the results exceeded the value of
that parameter. Pagination continues from the end of the previous
results that returned the nextToken value. This value is null when
there are no more results to return.
5108 5109 5110 5111 5112 5113 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5108 class ListAccessPoliciesResponse < Struct.new( :access_policies, :next_token) SENSITIVE = [] include Aws::Structure end |