Class: Aws::PrometheusService::Types::EksConfiguration

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

Overview

The ‘EksConfiguration` structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_arnString

ARN of the Amazon EKS cluster.

Returns:

  • (String)


798
799
800
801
802
803
804
# File 'lib/aws-sdk-prometheusservice/types.rb', line 798

class EksConfiguration < Struct.new(
  :cluster_arn,
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end

#security_group_idsArray<String>

A list of the security group IDs for the Amazon EKS cluster VPC configuration.

Returns:

  • (Array<String>)


798
799
800
801
802
803
804
# File 'lib/aws-sdk-prometheusservice/types.rb', line 798

class EksConfiguration < Struct.new(
  :cluster_arn,
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

A list of subnet IDs for the Amazon EKS cluster VPC configuration.

Returns:

  • (Array<String>)


798
799
800
801
802
803
804
# File 'lib/aws-sdk-prometheusservice/types.rb', line 798

class EksConfiguration < Struct.new(
  :cluster_arn,
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end