Class: Aws::EMRContainers::Types::Certificate

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

Overview

The entity representing certificate data generated for managed endpoint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_arnString

The ARN of the certificate generated for managed endpoint.

Returns:

  • (String)


63
64
65
66
67
68
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 63

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

#certificate_dataString

The base64 encoded PEM certificate data generated for managed endpoint.

Returns:

  • (String)


63
64
65
66
67
68
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 63

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