AWS::GroundStation::DataflowEndpointGroup EndpointDetails - AWS CloudFormation
Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.

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::DataflowEndpointGroup EndpointDetails

The security details and endpoint information.

Syntax

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

Properties

AwsGroundStationAgentEndpoint

An agent endpoint.

Required: No

Type: AwsGroundStationAgentEndpoint

Update requires: Replacement

Endpoint

Information about the endpoint such as name and the endpoint address.

Required: No

Type: DataflowEndpoint

Update requires: Replacement

SecurityDetails

The role ARN, and IDs for security groups and subnets.

Required: No

Type: SecurityDetails

Update requires: Replacement

Examples

Create a EndpointDetails

The following example creates Ground Station EndpointDetails

JSON

{ "EndpointDetails": [ { "SecurityDetails": { "SubnetIds": [ "subnet-6782e71e" ], "SecurityGroupIds": [ "sg-6979fe18" ], "RoleArn": "arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEBQ4PI" }, "Endpoint": { "Name": "myEndpoint", "Address": { "Name": "172.10.0.2", "Port": 44720 }, "Mtu": 1500 } } } }

YAML

EndpointDetails: - SecurityDetails: SubnetIds: - subnet-12345678 SecurityGroupIds: - sg-87654321 RoleArn: arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEABCDE Endpoint: Name: myEndpoint Address: Name: 172.10.0.2 Port: 44720 Mtu: 1500