Class: Aws::EKS::Types::DescribeAddonRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::DescribeAddonRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Note:
When making an API call, you may pass DescribeAddonRequest data as a hash:
{
cluster_name: "ClusterName", # required
addon_name: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#addon_name ⇒ String
The name of the add-on.
-
#cluster_name ⇒ String
The name of the cluster.
Instance Attribute Details
#addon_name ⇒ String
The name of the add-on. The name must match one of the names returned by [ `ListAddons` ][1].
[1]: docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
1270 1271 1272 1273 1274 1275 |
# File 'lib/aws-sdk-eks/types.rb', line 1270 class DescribeAddonRequest < Struct.new( :cluster_name, :addon_name) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the cluster.
1270 1271 1272 1273 1274 1275 |
# File 'lib/aws-sdk-eks/types.rb', line 1270 class DescribeAddonRequest < Struct.new( :cluster_name, :addon_name) SENSITIVE = [] include Aws::Structure end |