Class: Aws::EMRContainers::Types::ContainerInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRContainers::Types::ContainerInfo
- Defined in:
- gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb
Overview
Note:
ContainerInfo is a union - when making an API calls you must set exactly one of the members.
Note:
ContainerInfo is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ContainerInfo corresponding to the set member.
The information about the container used for a job run or a managed endpoint.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#eks_info ⇒ Types::EksInfo
The information about the Amazon EKS cluster.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#eks_info ⇒ Types::EksInfo
The information about the Amazon EKS cluster.
175 176 177 178 179 180 181 182 183 184 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 175 class ContainerInfo < Struct.new( :eks_info, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class EksInfo < ContainerInfo; end class Unknown < ContainerInfo; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
175 176 177 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 175 def unknown @unknown end |