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)


793
794
795
796
797
798
799
# File 'lib/aws-sdk-prometheusservice/types.rb', line 793

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>)


793
794
795
796
797
798
799
# File 'lib/aws-sdk-prometheusservice/types.rb', line 793

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>)


793
794
795
796
797
798
799
# File 'lib/aws-sdk-prometheusservice/types.rb', line 793

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