AWS::GroundStation::Config TelemetrySinkConfig - Amazon CloudFormation
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

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

AWS::GroundStation::Config TelemetrySinkConfig

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

Syntax

To declare this entity in your Amazon 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