AWS rtb-fabric documentation change
Summary
Added 'Testing and using links' section with guidance on validating connectivity via curl commands and clarifying link accessibility within VPC
Security assessment
The change adds operational documentation about testing links but does not address security vulnerabilities or introduce security features. The note about VPC accessibility is a standard network isolation detail rather than a security fix.
Diff
diff --git a/rtb-fabric/latest/userguide/links.md b/rtb-fabric/latest/userguide/links.md index 82c28a992..62749d111 100644 --- a//rtb-fabric/latest/userguide/links.md +++ b//rtb-fabric/latest/userguide/links.md @@ -5 +5 @@ -Creating links between gatewaysCreating external linksEditing linksAccepting or declining a link requestDeleting gateway linksAdding modules to linksConfiguring link logging +Creating links between gatewaysTesting and using linksCreating external linksEditing linksAccepting or declining a link requestDeleting gateway linksAdding modules to linksConfiguring link logging @@ -18,0 +19,2 @@ To create links with other RTB Fabric users, you need their responder gateway ID + * Testing and using links + @@ -119,0 +122,21 @@ Use the following command to create a link between gateways using the AWS Comman +## Testing and using links + +###### Note + +Link addresses will only be visible and accessible from within your VPC. + +###### To test your newly created link + + 1. The URL components in the example below will come from your API responses. If you don't have them at hand, your Gateway ID and Link ID can be found via the AWS Management Console, or by invoking the ListGateways and ListLinks operations outlined in [RTB Fabric API Reference](https://docs.aws.amazon.com/rtb-fabric/latest/api/welcome.html) + + 2. From the command line, use `curl` to send a POST request to the Link. Supply an OpenRTB payload to validate full end-to-end requests to your partner, or an empty body to simply test connectivity. See below for a `curl` example in the us-east-1 region. + + curl -X POST -H "Content-Type: application/json" -d {Your RTB JSON Payload} \ + "https://rtb-gw-{your-gateway-id}.{your-aws-account}.gateway.rtbfabric.us-east-1.amazonaws.com/link/link-{your-link-id}/link" + + +Any additional URL or path params that your partner expects can be appended to the Link URI. + + + +