Class: Aws::EKS::Types::ListFargateProfilesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListFargateProfilesResponse
- Defined in:
- gems/aws-sdk-eks/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 futureListFargateProfiles
request.
Instance Attribute Details
#fargate_profile_names ⇒ Array<String>
A list of all of the Fargate profiles associated with the specified cluster.
2485 2486 2487 2488 2489 2490 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 2485 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.
2485 2486 2487 2488 2489 2490 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 2485 class ListFargateProfilesResponse < Struct.new( :fargate_profile_names, :next_token) SENSITIVE = [] include Aws::Structure end |