Skip to main content

dataflow_endpoint_groups

Creates, updates, deletes or gets a dataflow_endpoint_group resource or lists dataflow_endpoint_groups in a region

Overview

Namedataflow_endpoint_groups
TypeResource
DescriptionAWS Ground Station DataflowEndpointGroup schema for CloudFormation
Idaws.groundstation.dataflow_endpoint_groups

Fields

NameDatatypeDescription
idstring
arnstring
endpoint_detailsarray
contact_pre_pass_duration_secondsintegerAmount 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.
contact_post_pass_duration_secondsintegerAmount 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.
tagsarray
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTEndpointDetails, region
delete_resourceDELETEdata__Identifier, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all dataflow_endpoint_groups in a region.

SELECT
region,
id,
arn,
endpoint_details,
contact_pre_pass_duration_seconds,
contact_post_pass_duration_seconds,
tags
FROM aws.groundstation.dataflow_endpoint_groups
WHERE region = 'us-east-1';

Gets all properties from an individual dataflow_endpoint_group.

SELECT
region,
id,
arn,
endpoint_details,
contact_pre_pass_duration_seconds,
contact_post_pass_duration_seconds,
tags
FROM aws.groundstation.dataflow_endpoint_groups
WHERE region = 'us-east-1' AND data__Identifier = '<Id>';

INSERT example

Use the following StackQL query and manifest file to create a new dataflow_endpoint_group resource, using stack-deploy.

/*+ create */
INSERT INTO aws.groundstation.dataflow_endpoint_groups (
EndpointDetails,
region
)
SELECT
'{{ EndpointDetails }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.groundstation.dataflow_endpoint_groups
WHERE data__Identifier = '<Id>'
AND region = 'us-east-1';

Permissions

To operate on the dataflow_endpoint_groups resource, the following permissions are required:

Create

groundstation:CreateDataflowEndpointGroup,
groundstation:GetDataflowEndpointGroup,
groundstation:TagResource,
iam:PassRole,
ec2:describeAddresses,
ec2:describeNetworkInterfaces,
iam:createServiceLinkedRole

Read

groundstation:GetDataflowEndpointGroup,
groundstation:ListTagsForResource

Delete

groundstation:DeleteDataflowEndpointGroup,
groundstation:GetDataflowEndpointGroup

List

groundstation:ListDataflowEndpointGroups