core_network_change_events
Creates, updates, deletes, gets or lists a core_network_change_events resource.
Overview
| Name | core_network_change_events |
| Type | Resource |
| Id | aws.networkmanager.core_network_change_events |
Fields
The following fields are returned by SELECT queries:
- get_core_network_change_events
| Name | Datatype | Description |
|---|---|---|
action | string | The action taken for the change event. (ADD, MODIFY, REMOVE) |
event_time | string (date-time) | The timestamp for an event change in status. |
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>) |
status | string | The status of the core network change event. (NOT_STARTED, IN_PROGRESS, COMPLETE, FAILED) |
type | string | Describes the type of change event. (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) |
values | object | Details of the change event. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_core_network_change_events | select | core_network_id, policy_version_id, region | maxResults, nextToken | Returns information about a core network change event. |
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_events
Returns information about a core network change event.
SELECT
action,
event_time,
identifier_path,
status,
type,
values
FROM aws.networkmanager.core_network_change_events
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 }}'
;