Skip to content

aws.groundstation.get_dataflow_endpoint_group

Example SQL Queries

SELECT * FROM
aws.groundstation.get_dataflow_endpoint_group
WHERE
"dataflow_endpoint_group_id" = 'VALUE';

Description

Returns the dataflow endpoint group.

Table Definition

Column NameColumn Data Type
dataflow_endpoint_group_id Required Input Column

UUID of a dataflow endpoint group.

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(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_aws_region Input Column

The AWS region to use.

VARCHAR
contact_post_pass_duration_seconds

Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.

BIGINT
contact_pre_pass_duration_seconds

Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.

BIGINT
dataflow_endpoint_group_arn

ARN of a dataflow endpoint group.

VARCHAR
endpoints_details

Details of a dataflow endpoint.

STRUCT(
"aws_ground_station_agent_endpoint" STRUCT(
"agent_status" VARCHAR,
"audit_results" VARCHAR,
"egress_address" STRUCT(
"mtu" BIGINT,
"socket_address" STRUCT(
"name" VARCHAR,
"port" BIGINT
)
),
"ingress_address" STRUCT(
"mtu" BIGINT,
"socket_address" STRUCT(
"name" VARCHAR,
"port_range" STRUCT(
"maximum" BIGINT,
"minimum" BIGINT
)
)
),
"name" VARCHAR
),
"endpoint" STRUCT(
"address" STRUCT(
"name" VARCHAR,
"port" BIGINT
),
"mtu" BIGINT,
"name" VARCHAR,
"status" VARCHAR
),
"health_reasons" VARCHAR[],
"health_status" VARCHAR,
"security_details" STRUCT(
"role_arn" VARCHAR,
"security_group_ids" VARCHAR[],
"subnet_ids" VARCHAR[]
)
)[]
Show child fields
endpoints_details[]
Show child fields
endpoints_details[].aws_ground_station_agent_endpoint

An agent endpoint.

Show child fields
endpoints_details[].aws_ground_station_agent_endpoint.agent_status

The status of AgentEndpoint.

endpoints_details[].aws_ground_station_agent_endpoint.audit_results

The results of the audit.

endpoints_details[].aws_ground_station_agent_endpoint.egress_address

The egress address of AgentEndpoint.

Show child fields
endpoints_details[].aws_ground_station_agent_endpoint.egress_address.mtu

Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

endpoints_details[].aws_ground_station_agent_endpoint.egress_address.socket_address

A socket address.

Show child fields
endpoints_details[].aws_ground_station_agent_endpoint.egress_address.socket_address.name

Name of a socket address.

endpoints_details[].aws_ground_station_agent_endpoint.egress_address.socket_address.port

Port of a socket address.

endpoints_details[].aws_ground_station_agent_endpoint.ingress_address

The ingress address of AgentEndpoint.

Show child fields
endpoints_details[].aws_ground_station_agent_endpoint.ingress_address.mtu

Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

endpoints_details[].aws_ground_station_agent_endpoint.ingress_address.socket_address

A ranged socket address.

Show child fields
endpoints_details[].aws_ground_station_agent_endpoint.ingress_address.socket_address.name

IPv4 socket address.

endpoints_details[].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range

Port range of a socket address.

Show child fields
endpoints_details[].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum

A maximum value.

endpoints_details[].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum

A minimum value.

endpoints_details[].aws_ground_station_agent_endpoint.name

Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

endpoints_details[].endpoint

A dataflow endpoint.

Show child fields
endpoints_details[].endpoint.address

Socket address of a dataflow endpoint.

Show child fields
endpoints_details[].endpoint.address.name

Name of a socket address.

endpoints_details[].endpoint.address.port

Port of a socket address.

endpoints_details[].endpoint.mtu

Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

endpoints_details[].endpoint.name

Name of a dataflow endpoint.

endpoints_details[].endpoint.status

Status of a dataflow endpoint.

endpoints_details[].health_reasons[]
endpoints_details[].health_status

A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

endpoints_details[].security_details

Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

Show child fields
endpoints_details[].security_details.role_arn

ARN to a role needed for connecting streams to your instances.

endpoints_details[].security_details.security_group_ids[]
endpoints_details[].security_details.subnet_ids[]
tags

Tags assigned to a dataflow endpoint group.

MAP(VARCHAR, VARCHAR)