Class: Aws::EKS::Types::DeleteFargateProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::DeleteFargateProfileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Note:
When making an API call, you may pass DeleteFargateProfileRequest data as a hash:
{
cluster_name: "String", # required
fargate_profile_name: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name of the Amazon EKS cluster associated with the Fargate profile to delete.
-
#fargate_profile_name ⇒ String
The name of the Fargate profile to delete.
Instance Attribute Details
#cluster_name ⇒ String
The name of the Amazon EKS cluster associated with the Fargate profile to delete.
1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-eks/types.rb', line 1190 class DeleteFargateProfileRequest < Struct.new( :cluster_name, :fargate_profile_name) SENSITIVE = [] include Aws::Structure end |
#fargate_profile_name ⇒ String
The name of the Fargate profile to delete.
1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-eks/types.rb', line 1190 class DeleteFargateProfileRequest < Struct.new( :cluster_name, :fargate_profile_name) SENSITIVE = [] include Aws::Structure end |