Skip to main content

route_server_propagations

Creates, updates, deletes or gets a route_server_propagation resource or lists route_server_propagations in a region

Overview

Nameroute_server_propagations
TypeResource
DescriptionVPC Route Server Propagation
Idawscc.ec2.route_server_propagations

Fields

NameDatatypeDescription
route_server_idstringRoute Server ID
route_table_idstringRoute Table ID
regionstringAWS region.

For more information, see AWS::EC2::RouteServerPropagation.

Methods

NameAccessible byRequired Params
create_resourceINSERTRouteServerId, RouteTableId, region
delete_resourceDELETEdata__Identifier, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual route_server_propagation.

SELECT
region,
route_server_id,
route_table_id
FROM awscc.ec2.route_server_propagations
WHERE region = 'us-east-1' AND data__Identifier = '<RouteServerId>|<RouteTableId>';

INSERT example

Use the following StackQL query and manifest file to create a new route_server_propagation resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.ec2.route_server_propagations (
RouteServerId,
RouteTableId,
region
)
SELECT
'{{ RouteServerId }}',
'{{ RouteTableId }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.ec2.route_server_propagations
WHERE data__Identifier = '<RouteServerId|RouteTableId>'
AND region = 'us-east-1';

Permissions

To operate on the route_server_propagations resource, the following permissions are required:

Create

ec2:EnableRouteServerPropagation,
ec2:GetRouteServerPropagations

Read

ec2:GetRouteServerPropagations

Delete

ec2:GetRouteServerPropagations,
ec2:DisableRouteServerPropagation

List

ec2:DescribeRouteServers,
ec2:GetRouteServerPropagations