outpost_lags
Creates, updates, deletes, gets or lists an outpost_lags resource.
Overview
| Name | outpost_lags |
| Type | Resource |
| Id | aws.ec2.outpost_lags |
Fields
The following fields are returned by SELECT queries:
- describe_outpost_lags
| Name | Datatype | Description |
|---|---|---|
local_gateway_virtual_interface_ids | string | The IDs of the local gateway virtual interfaces associated with the Outpost LAG. |
outpost_arn | string | The Amazon Resource Number (ARN) of the Outpost LAG. |
outpost_lag_id | string | The ID of the Outpost LAG. |
owner_id | string | The ID of the Outpost LAG owner. |
service_link_virtual_interface_ids | string | The service link virtual interface IDs associated with the Outpost LAG. |
state | string | The current state of the Outpost LAG. |
tags | string | The tags associated with the Outpost LAG. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_outpost_lags | select | region | OutpostLagId, Filter, MaxResults, NextToken, DryRun | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
DryRun | boolean | Checks 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. |
Filter | array | The 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. |
MaxResults | integer | The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. |
NextToken | string | The token for the next page of results. |
OutpostLagId | array | The IDs of the Outpost LAGs. |
SELECT examples
- describe_outpost_lags
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 }}'
;