aws.emr_containers.get_managed_endpoint_session_credentials
Example SQL Queries
SELECT * FROMaws.emr_containers.get_managed_endpoint_session_credentialsWHERE"execution_role_arn" = 'VALUE'AND "credential_type" = 'VALUE'AND "endpoint_identifier" = 'VALUE'AND "virtual_cluster_identifier" = 'VALUE';Description
Generate a session token to connect to a managed endpoint.
Table Definition
| Column Name | Column Data Type |
|---|---|
| credential_type Required Input Column Type of the token requested. Currently supported and default value of this field is “TOKEN.” | VARCHAR |
| endpoint_identifier Required Input Column The ARN of the managed endpoint for which the request is submitted. | VARCHAR |
| execution_role_arn Required Input Column The IAM Execution Role ARN that will be used by the job run. | VARCHAR |
| virtual_cluster_identifier Required Input Column The ARN of the Virtual Cluster which the Managed Endpoint belongs to. | VARCHAR |
| client_token Input Column The client idempotency token of the job run request. | VARCHAR |
| duration_in_seconds Input Column Duration in seconds for which the session token is valid. The default duration is 15 minutes and the maximum is 12 hours. | BIGINT |
| log_context Input Column String identifier used to separate sections of the execution logs uploaded to S3. | VARCHAR |
| _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 |
| credentials The structure containing the session credentials. | STRUCT( |
Show child fields
| |
| expires_at The date and time when the session token will expire. | TIMESTAMP_S |
| id The identifier of the session token returned. | VARCHAR |