Skip to main content

outpost_lags

Creates, updates, deletes, gets or lists an outpost_lags resource.

Overview

Nameoutpost_lags
TypeResource
Idaws.ec2.outpost_lags

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
local_gateway_virtual_interface_idsstringThe IDs of the local gateway virtual interfaces associated with the Outpost LAG.
outpost_arnstringThe Amazon Resource Number (ARN) of the Outpost LAG.
outpost_lag_idstringThe ID of the Outpost LAG.
owner_idstringThe ID of the Outpost LAG owner.
service_link_virtual_interface_idsstringThe service link virtual interface IDs associated with the Outpost LAG.
statestringThe current state of the Outpost LAG.
tagsstringThe tags associated with the Outpost LAG.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_outpost_lagsselectregionOutpostLagId, Filter, MaxResults, NextToken, DryRunDescribes the Outposts link aggregation groups (LAGs). LAGs are only available for second-generation Outposts racks at this time.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
DryRunbooleanChecks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
FilterarrayThe filters to use for narrowing down the request. The following filters are supported: service-link-virtual-interface-id - The ID of the service link virtual interface. service-link-virtual-interface-arn - The ARN of the service link virtual interface. outpost-id - The Outpost ID. outpost-arn - The Outpost ARN. owner-id - The ID of the Amazon Web Services account that owns the service link virtual interface. vlan - The ID of the address pool. local-address - The local address. peer-address - The peer address. peer-bgp-asn - The peer BGP ASN. outpost-lag-id - The Outpost LAG ID. configuration-state - The configuration state of the service link virtual interface.
MaxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
NextTokenstringThe token for the next page of results.
OutpostLagIdarrayThe IDs of the Outpost LAGs.

SELECT examples

Describes the Outposts link aggregation groups (LAGs). LAGs are only available for second-generation Outposts racks at this time.

SELECT
local_gateway_virtual_interface_ids,
outpost_arn,
outpost_lag_id,
owner_id,
service_link_virtual_interface_ids,
state,
tags
FROM aws.ec2.outpost_lags
WHERE region = '{{ region }}' -- required
AND OutpostLagId = '{{ OutpostLagId }}'
AND Filter = '{{ Filter }}'
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
AND DryRun = '{{ DryRun }}'
;