{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-security-details-schema.json", "title": "SecurityDetails", "description": "Information about endpoints.", "type": "object", "properties": { "roleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "ARN to a role needed for connecting streams to your instances. " } ] }, "securityGroupIds": { "allOf": [ { "$ref": "#/components/schemas/SecurityGroupIdList" }, { "description": "The security groups to attach to the elastic network interfaces." } ] }, "subnetIds": { "allOf": [ { "$ref": "#/components/schemas/SubnetList" }, { "description": "A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances." } ] } }, "required": [ "roleArn", "securityGroupIds", "subnetIds" ] }