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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

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)


601
602
603
604
605
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 601

class Certificate < Struct.new(
  :data)
  SENSITIVE = []
  include Aws::Structure
end