KubernetesObjectValueProps¶
-
class
aws_cdk.aws_eks.
KubernetesObjectValueProps
(*, cluster, json_path, object_name, object_type, object_namespace=None, timeout=None)¶ Bases:
object
Properties for KubernetesObjectValue.
- Parameters
cluster (
ICluster
) – The EKS cluster to fetch attributes from. [disable-awslint:ref-via-interface]json_path (
str
) – JSONPath to the specific value.object_name (
str
) – The name of the object to query.object_type (
str
) – The object type to query. (e.g ‘service’, ‘pod’…)object_namespace (
Optional
[str
]) – The namespace the object belongs to. Default: ‘default’timeout (
Optional
[Duration
]) – Timeout for waiting on a value. Default: Duration.minutes(5)
Attributes
-
cluster
¶ The EKS cluster to fetch attributes from.
[disable-awslint:ref-via-interface]
- Return type
-
json_path
¶ JSONPath to the specific value.
- See
- Return type
str
-
object_name
¶ The name of the object to query.
- Return type
str
-
object_namespace
¶ The namespace the object belongs to.
- Default
‘default’
- Return type
Optional
[str
]
-
object_type
¶ The object type to query.
(e.g ‘service’, ‘pod’…)
- Return type
str