core_network_change_sets
Creates, updates, deletes, gets or lists a core_network_change_sets resource.
Overview
| Name | core_network_change_sets |
| Type | Resource |
| Id | aws.networkmanager.core_network_change_sets |
Fields
The following fields are returned by SELECT queries:
- get_core_network_change_set
| Name | Datatype | Description |
|---|---|---|
action | string | The action to take for a core network. (ADD, MODIFY, REMOVE) |
identifier | string | The resource identifier. (pattern: <code>[\s\S]*</code>) |
identifier_path | string | Uniquely identifies the path for a change within the changeset. For example, the IdentifierPath for a core network segment change might be "CORE_NETWORK_SEGMENT/us-east-1/devsegment". (pattern: <code>[\s\S]*</code>) |
new_values | object | The new value for a core network |
previous_values | object | The previous values for a core network. |
type | string | The type of change. (CORE_NETWORK_SEGMENT, NETWORK_FUNCTION_GROUP, CORE_NETWORK_EDGE, ATTACHMENT_MAPPING, ATTACHMENT_ROUTE_PROPAGATION, ATTACHMENT_ROUTE_STATIC, ROUTING_POLICY, ROUTING_POLICY_SEGMENT_ASSOCIATION, ROUTING_POLICY_EDGE_ASSOCIATION, ROUTING_POLICY_ATTACHMENT_ASSOCIATION, CORE_NETWORK_CONFIGURATION, SEGMENTS_CONFIGURATION, SEGMENT_ACTIONS_CONFIGURATION, ATTACHMENT_POLICIES_CONFIGURATION) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_core_network_change_set | select | core_network_id, policy_version_id, region | maxResults, nextToken | Returns a change set between the LIVE core network policy and a submitted policy. |
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 |
|---|---|---|
core_network_id | string | The ID of a core network. |
policy_version_id | integer | The ID of the policy version. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return. |
nextToken | string | The token for the next page of results. |
SELECT examples
- get_core_network_change_set
Returns a change set between the LIVE core network policy and a submitted policy.
SELECT
action,
identifier,
identifier_path,
new_values,
previous_values,
type
FROM aws.networkmanager.core_network_change_sets
WHERE core_network_id = '{{ core_network_id }}' -- required
AND policy_version_id = '{{ policy_version_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;