AWS::GroundStation::Config TelemetrySinkConfig - AWS CloudFormation

This is the new CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.

AWS::GroundStation::Config TelemetrySinkConfig

Provides information about how AWS Ground Station should deliver telemetry during contacts.

Syntax

To declare this entity in your CloudFormation template, use the following syntax:

Properties

TelemetrySinkData

Configuration data for the telemetry sink. The structure of this data depends on the telemetry sink type specified.

Required: Yes

Type: TelemetrySinkData

Update requires: No interruption

TelemetrySinkType

Type of telemetry sink where telemetry is to be delivered. Currently, only KINESIS_DATA_STREAM is supported.

Required: Yes

Type: String

Allowed values: KINESIS_DATA_STREAM

Update requires: No interruption

Examples

Create a TelemetrySinkConfig

The following example creates a Ground Station TelemetrySinkConfig that delivers telemetry to an Amazon Kinesis Data Stream.

JSON

{ "TelemetrySinkConfig": { "TelemetrySinkType": "KINESIS_DATA_STREAM", "TelemetrySinkData": { "KinesisDataStreamData": { "KinesisDataStreamArn": "arn:aws:kinesis:us-west-2:123456789012:stream/my-telemetry-stream", "KinesisRoleArn": "arn:aws:iam::123456789012:role/GroundStationKinesisRole" } } } }

YAML

TelemetrySinkConfig: TelemetrySinkType: KINESIS_DATA_STREAM TelemetrySinkData: KinesisDataStreamData: KinesisDataStreamArn: arn:aws:kinesis:us-west-2:123456789012:stream/my-telemetry-stream KinesisRoleArn: arn:aws:iam::123456789012:role/GroundStationKinesisRole