Class: Aws::ResilienceHub::Types::EksSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResilienceHub::Types::EksSource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resiliencehub/types.rb
Overview
The input source of the Amazon Elastic Kubernetes Service cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#eks_cluster_arn ⇒ String
Amazon Resource Name (ARN) of the Amazon Elastic Kubernetes Service cluster.
-
#namespaces ⇒ Array<String>
The list of namespaces located on your Amazon Elastic Kubernetes Service cluster.
Instance Attribute Details
#eks_cluster_arn ⇒ String
Amazon Resource Name (ARN) of the Amazon Elastic Kubernetes Service cluster. The format for this ARN is: arn:‘aws`:eks:`region`:`account-id`:cluster/`cluster-name`. For more information about ARNs, see [ Amazon Resource Names (ARNs)] in the *Amazon Web Services General Reference* guide.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
3065 3066 3067 3068 3069 3070 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 3065 class EksSource < Struct.new( :eks_cluster_arn, :namespaces) SENSITIVE = [] include Aws::Structure end |