aws.emr_containers.list_virtual_clusters
Example SQL Queries
SELECT * FROMaws.emr_containers.list_virtual_clusters;Description
Lists information about the specified virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any additional resource in your system. A single virtual cluster maps to a single Kubernetes namespace. Given this relationship, you can model virtual clusters the same way you model Kubernetes namespaces to meet your requirements.
Table Definition
| Column Name | Column Data Type |
|---|---|
| container_provider_id Input Column The container provider ID of the virtual cluster. | VARCHAR |
| container_provider_type Input Column The container provider type of the virtual cluster. Amazon EKS is the only supported type as of now. | VARCHAR |
| created_after Input Column The date and time after which the virtual clusters are created. | TIMESTAMP_S |
| created_before Input Column The date and time before which the virtual clusters are created. | TIMESTAMP_S |
| eks_access_entry_integrated Input Column Optional Boolean that specifies whether the operation should return the virtual clusters that have the access entry integration enabled or disabled. If not specified, the operation returns all applicable virtual clusters. | BOOLEAN |
| states Input Column The states of the requested virtual clusters. | VARCHAR[] |
Show child fields
| |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| arn The ARN of the virtual cluster. | VARCHAR |
| container_provider The container provider of the virtual cluster. | STRUCT( |
Show child fields
| |
| created_at The date and time when the virtual cluster is created. | TIMESTAMP_S |
| id The ID of the virtual cluster. | VARCHAR |
| name The name of the virtual cluster. | VARCHAR |
| security_configuration_id The ID of the security configuration. | VARCHAR |
| state The state of the virtual cluster. | VARCHAR |
| tags The assigned tags of the virtual cluster. | MAP(VARCHAR, VARCHAR) |