AWS::GroundStation::DataflowEndpointGroup EndpointDetails - AWS CloudFormation

AWS::GroundStation::DataflowEndpointGroup EndpointDetails

The security details and endpoint information.

Syntax

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

Properties

AwsGroundStationAgentEndpoint

Property description not available.

Required: No

Type: AwsGroundStationAgentEndpoint

Update requires: No interruption

Endpoint

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

Required: No

Type: DataflowEndpoint

Update requires: No interruption

SecurityDetails

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

Required: No

Type: SecurityDetails

Update requires: No interruption

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