interface CfnMissionProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnMissionProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnMissionProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnMissionProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnMissionProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » 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 { aws_groundstation as groundstation } from '@aws-cdk/cfn-property-mixins';
const cfnMissionProfileMixinProps: groundstation.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',
}],
telemetrySinkConfigArn: 'telemetrySinkConfigArn',
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. |
| telemetry | string | ARN of a Config resource of type TelemetrySinkConfig used for telemetry data sink configuration. |
| tracking | string | IConfig | 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.
telemetrySinkConfigArn?
Type:
string
(optional)
ARN of a Config resource of type TelemetrySinkConfig used for telemetry data sink configuration.
trackingConfigArn?
Type:
string | IConfig
(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