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
Idawscc.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.

For more information, see AWS::GroundStation::DataflowEndpointGroup.

Methods

NameResourceAccessible byRequired Params
create_resourcedataflow_endpoint_groupsINSERTEndpointDetails, region
delete_resourcedataflow_endpoint_groupsDELETEIdentifier, region
update_resourcedataflow_endpoint_groupsUPDATEIdentifier, PatchDocument, region
list_resourcesdataflow_endpoint_groups_list_onlySELECTregion
get_resourcedataflow_endpoint_groupsSELECTIdentifier, region

SELECT examples

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 awscc.groundstation.dataflow_endpoint_groups
WHERE
region = 'us-east-1' AND
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 awscc.groundstation.dataflow_endpoint_groups (
EndpointDetails,
region
)
SELECT
'{{ endpoint_details }}',
'{{ region }}';

UPDATE example

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

/*+ update */
UPDATE awscc.groundstation.dataflow_endpoint_groups
SET PatchDocument = string('{{ {
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ id }}';

DELETE example

/*+ delete */
DELETE FROM awscc.groundstation.dataflow_endpoint_groups
WHERE
Identifier = '{{ id }}' AND
region = 'us-east-1';

Permissions

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

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