Class: Aws::EMRContainers::Types::ContainerProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRContainers::Types::ContainerProvider
- Defined in:
- gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb
Overview
Note:
When making an API call, you may pass ContainerProvider data as a hash:
{
type: "EKS", # required, accepts EKS
id: "ClusterId", # required
info: {
eks_info: {
namespace: "KubernetesNamespace",
},
},
}
The information about the container provider.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the container cluster.
-
#info ⇒ Types::ContainerInfo
The information about the container cluster.
-
#type ⇒ String
The type of the container provider.
Instance Attribute Details
#id ⇒ String
The ID of the container cluster.
258 259 260 261 262 263 264 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 258 class ContainerProvider < Struct.new( :type, :id, :info) SENSITIVE = [] include Aws::Structure end |
#info ⇒ Types::ContainerInfo
The information about the container cluster.
258 259 260 261 262 263 264 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 258 class ContainerProvider < Struct.new( :type, :id, :info) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the container provider. EKS is the only supported type as of now.
258 259 260 261 262 263 264 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 258 class ContainerProvider < Struct.new( :type, :id, :info) SENSITIVE = [] include Aws::Structure end |