Class: Aws::EKS::Types::ListFargateProfilesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListFargateProfilesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fargate_profile_names ⇒ Array<String>
A list of all of the Fargate profiles associated with the specified cluster.
-
#next_token ⇒ String
The `nextToken` value to include in a future `ListFargateProfiles` request.
Instance Attribute Details
#fargate_profile_names ⇒ Array<String>
A list of all of the Fargate profiles associated with the specified cluster.
2317 2318 2319 2320 2321 2322 |
# File 'lib/aws-sdk-eks/types.rb', line 2317 class ListFargateProfilesResponse < Struct.new( :fargate_profile_names, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The `nextToken` value to include in a future `ListFargateProfiles` request. When the results of a `ListFargateProfiles` request exceed `maxResults`, you can use this value to retrieve the next page of results. This value is `null` when there are no more results to return.
2317 2318 2319 2320 2321 2322 |
# File 'lib/aws-sdk-eks/types.rb', line 2317 class ListFargateProfilesResponse < Struct.new( :fargate_profile_names, :next_token) SENSITIVE = [] include Aws::Structure end |