Skip to main content

mission_profiles

Creates, updates, deletes or gets a mission_profile resource or lists mission_profiles in a region

Overview

Namemission_profiles
TypeResource
DescriptionAWS Ground Station Mission Profile resource type for CloudFormation.
Idaws.groundstation.mission_profiles

Fields

NameDatatypeDescription
namestringA name used to identify a mission profile.
contact_pre_pass_duration_secondsintegerPre-pass time needed before the contact.
contact_post_pass_duration_secondsintegerPost-pass time needed after the contact.
minimum_viable_contact_duration_secondsintegerVisibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
streams_kms_keyobjectThe ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
streams_kms_rolestringThe ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
dataflow_edgesarray
tracking_config_arnstring
tagsarray
idstring
arnstring
regionstring
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTName, MinimumViableContactDurationSeconds, DataflowEdges, TrackingConfigArn, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all mission_profiles in a region.

SELECT
region,
name,
contact_pre_pass_duration_seconds,
contact_post_pass_duration_seconds,
minimum_viable_contact_duration_seconds,
streams_kms_key,
streams_kms_role,
dataflow_edges,
tracking_config_arn,
tags,
id,
arn,
region
FROM aws.groundstation.mission_profiles
WHERE region = 'us-east-1';

Gets all properties from an individual mission_profile.

SELECT
region,
name,
contact_pre_pass_duration_seconds,
contact_post_pass_duration_seconds,
minimum_viable_contact_duration_seconds,
streams_kms_key,
streams_kms_role,
dataflow_edges,
tracking_config_arn,
tags,
id,
arn,
region
FROM aws.groundstation.mission_profiles
WHERE region = 'us-east-1' AND data__Identifier = '<Id>|<Arn>';

INSERT example

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

/*+ create */
INSERT INTO aws.groundstation.mission_profiles (
Name,
MinimumViableContactDurationSeconds,
DataflowEdges,
TrackingConfigArn,
region
)
SELECT
'{{ Name }}',
'{{ MinimumViableContactDurationSeconds }}',
'{{ DataflowEdges }}',
'{{ TrackingConfigArn }}',
'{{ region }}';

DELETE example

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

Permissions

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

Create

groundstation:CreateMissionProfile,
groundstation:GetMissionProfile,
groundstation:TagResource,
iam:PassRole,
kms:DescribeKey,
kms:CreateGrant

Read

groundstation:GetMissionProfile,
groundstation:ListTagsForResource,
kms:DescribeKey,
kms:CreateGrant

Update

groundstation:UpdateMissionProfile,
groundstation:GetMissionProfile,
groundstation:ListTagsForResource,
groundstation:TagResource,
groundstation:UntagResource,
iam:PassRole,
kms:DescribeKey,
kms:CreateGrant

Delete

groundstation:DeleteMissionProfile,
groundstation:GetMissionProfile

List

groundstation:ListMissionProfiles