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 = '{{ region }}' 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 }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;

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 }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;

DELETE example

/*+ delete */
DELETE FROM awscc.groundstation.dataflow_endpoint_groups
WHERE
Identifier = '{{ id }}' AND
region = '{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;

Additional Parameters

Mutable resources in the Cloud Control provider support additional optional parameters which can be supplied with INSERT, UPDATE, or DELETE operations. These include:

ParameterDescription
ClientToken
A unique identifier to ensure the idempotency of the resource request.This allows the provider to accurately distinguish between retries and new requests.
A client token is valid for 36 hours once used.
After that, a resource request with the same client token is treated as a new request.
If you do not specify a client token, one is generated for inclusion in the request.
RoleArn
The ARN of the IAM role used to perform this resource operation.The role specified must have the permissions required for this operation.
If you do not specify a role, a temporary session is created using your AWS user credentials.
TypeVersionId
For private resource types, the type version to use in this resource operation.If you do not specify a resource version, the default version is used.

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