Class: Aws::EKS::Types::Certificate

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eks/types.rb

Overview

An object representing the ‘certificate-authority-data` for your cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#dataString

The base64 encoded certificate data required to communicate with your cluster. Add this to the ‘certificate-authority-data` section of the `kubeconfig` file for your cluster.

Returns:

  • (String)


22
23
24
25
# File 'lib/aws-sdk-eks/types.rb', line 22

class Certificate < Struct.new(
  :data)
  include Aws::Structure
end