interface CfnMissionProfileProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.GroundStation.CfnMissionProfileProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnMissionProfileProps |
![]() | software.amazon.awscdk.services.groundstation.CfnMissionProfileProps |
![]() | aws_cdk.aws_groundstation.CfnMissionProfileProps |
![]() | aws-cdk-lib » aws_groundstation » CfnMissionProfileProps |
Properties for defining a CfnMissionProfile
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as groundstation } from 'aws-cdk-lib';
const cfnMissionProfileProps: groundstation.CfnMissionProfileProps = {
dataflowEdges: [{
destination: 'destination',
source: 'source',
}],
minimumViableContactDurationSeconds: 123,
name: 'name',
trackingConfigArn: 'trackingConfigArn',
// the properties below are optional
contactPostPassDurationSeconds: 123,
contactPrePassDurationSeconds: 123,
streamsKmsKey: {
kmsAliasArn: 'kmsAliasArn',
kmsKeyArn: 'kmsKeyArn',
},
streamsKmsRole: 'streamsKmsRole',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
dataflow | IResolvable | IResolvable | Dataflow [] | A list containing lists of config ARNs. |
minimum | number | Minimum length of a contact in seconds that Ground Station will return when listing contacts. |
name | string | The name of the mission profile. |
tracking | string | The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact. |
contact | number | Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished. |
contact | number | Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass. |
streams | IResolvable | Streams | KMS key to use for encrypting streams. |
streams | string | Role to use for encrypting streams with KMS key. |
tags? | Cfn [] | Tags assigned to the mission profile. |
dataflowEdges
Type:
IResolvable
|
IResolvable
|
Dataflow
[]
A list containing lists of config ARNs.
Each list of config ARNs is an edge, with a "from" config and a "to" config.
minimumViableContactDurationSeconds
Type:
number
Minimum length of a contact in seconds that Ground Station will return when listing contacts.
Ground Station will not return contacts shorter than this duration.
name
Type:
string
The name of the mission profile.
trackingConfigArn
Type:
string
The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
contactPostPassDurationSeconds?
Type:
number
(optional)
Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.
contactPrePassDurationSeconds?
Type:
number
(optional)
Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.
streamsKmsKey?
Type:
IResolvable
|
Streams
(optional)
KMS key to use for encrypting streams.
streamsKmsRole?
Type:
string
(optional)
Role to use for encrypting streams with KMS key.
tags?
Type:
Cfn
[]
(optional)
Tags assigned to the mission profile.