class KubernetesObjectValue (construct)
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.KubernetesObjectValue |
Java | software.amazon.awscdk.services.eks.KubernetesObjectValue |
Python | aws_cdk.aws_eks.KubernetesObjectValue |
TypeScript (source) | @aws-cdk/aws-eks » KubernetesObjectValue |
Implements
IConstruct
, IConstruct
, IDependable
Represents a value of a specific object deployed in the cluster.
Use this to fetch any information available by the kubectl get
command.
Example
declare const cluster: eks.Cluster;
// query the load balancer address
const myServiceAddress = new eks.KubernetesObjectValue(this, 'LoadBalancerAttribute', {
cluster: cluster,
objectType: 'service',
objectName: 'my-service',
jsonPath: '.status.loadBalancer.ingress[0].hostname', // https://kubernetes.io/docs/reference/kubectl/jsonpath/
});
// pass the address to a lambda function
const proxyFunction = new lambda.Function(this, 'ProxyFunction', {
handler: 'index.handler',
code: lambda.Code.fromInline('my-code'),
runtime: lambda.Runtime.NODEJS_14_X,
environment: {
myServiceAddress: myServiceAddress.value,
},
})
Initializer
new KubernetesObjectValue(scope: Construct, id: string, props: KubernetesObjectValueProps)
Parameters
- scope
Construct
- id
string
- props
Kubernetes
Object Value Props
Construct Props
Name | Type | Description |
---|---|---|
cluster | ICluster | The EKS cluster to fetch attributes from. |
json | string | JSONPath to the specific value. |
object | string | The name of the object to query. |
object | string | The object type to query. |
object | string | The namespace the object belongs to. |
timeout? | Duration | Timeout for waiting on a value. |
cluster
Type:
ICluster
The EKS cluster to fetch attributes from.
[disable-awslint:ref-via-interface]
jsonPath
Type:
string
JSONPath to the specific value.
See also: https://kubernetes.io/docs/reference/kubectl/jsonpath/
objectName
Type:
string
The name of the object to query.
objectType
Type:
string
The object type to query.
(e.g 'service', 'pod'...)
objectNamespace?
Type:
string
(optional, default: 'default')
The namespace the object belongs to.
timeout?
Type:
Duration
(optional, default: Duration.minutes(5))
Timeout for waiting on a value.
Properties
Name | Type | Description |
---|---|---|
node | Construct | The construct tree node associated with this construct. |
value | string | The value as a string token. |
static RESOURCE_TYPE | string | The CloudFormation reosurce type. |
node
Type:
Construct
The construct tree node associated with this construct.
value
Type:
string
The value as a string token.
static RESOURCE_TYPE
Type:
string
The CloudFormation reosurce type.
Methods
Name | Description |
---|---|
to | Returns a string representation of this construct. |
String()
topublic toString(): string
Returns
string
Returns a string representation of this construct.