interface CfnMissionProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnMissionProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnMissionProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnMissionProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnMissionProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnMissionProfileMixinProps |
Properties for CfnMissionProfilePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const cfnMissionProfileMixinProps: groundstation_mixins.CfnMissionProfileMixinProps = {
contactPostPassDurationSeconds: 123,
contactPrePassDurationSeconds: 123,
dataflowEdges: [{
destination: 'destination',
source: 'source',
}],
minimumViableContactDurationSeconds: 123,
name: 'name',
streamsKmsKey: {
kmsAliasArn: 'kmsAliasArn',
kmsAliasName: 'kmsAliasName',
kmsKeyArn: 'kmsKeyArn',
},
streamsKmsRole: 'streamsKmsRole',
tags: [{
key: 'key',
value: 'value',
}],
trackingConfigArn: 'trackingConfigArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| 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. |
| 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. |
| tracking | 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.
dataflowEdges?
Type:
IResolvable | (IResolvable | Dataflow)[]
(optional)
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
(optional)
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
(optional)
The name of the mission profile.
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.
trackingConfigArn?
Type:
string
(optional)
The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.

.NET
Go
Java
Python
TypeScript