Skip to content

Get Core Network Change Events

networkmanager_get_core_network_change_events R Documentation

Returns information about a core network change event

Description

Returns information about a core network change event.

Usage

networkmanager_get_core_network_change_events(CoreNetworkId,
  PolicyVersionId, MaxResults, NextToken)

Arguments

CoreNetworkId

[required] The ID of a core network.

PolicyVersionId

[required] The ID of the policy version.

MaxResults

The maximum number of results to return.

NextToken

The token for the next page of results.

Value

A list with the following syntax:

list(
  CoreNetworkChangeEvents = list(
    list(
      Type = "CORE_NETWORK_SEGMENT"|"NETWORK_FUNCTION_GROUP"|"CORE_NETWORK_EDGE"|"ATTACHMENT_MAPPING"|"ATTACHMENT_ROUTE_PROPAGATION"|"ATTACHMENT_ROUTE_STATIC"|"CORE_NETWORK_CONFIGURATION"|"SEGMENTS_CONFIGURATION"|"SEGMENT_ACTIONS_CONFIGURATION"|"ATTACHMENT_POLICIES_CONFIGURATION",
      Action = "ADD"|"MODIFY"|"REMOVE",
      IdentifierPath = "string",
      EventTime = as.POSIXct(
        "2015-01-01"
      ),
      Status = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"FAILED",
      Values = list(
        EdgeLocation = "string",
        SegmentName = "string",
        NetworkFunctionGroupName = "string",
        AttachmentId = "string",
        Cidr = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_core_network_change_events(
  CoreNetworkId = "string",
  PolicyVersionId = 123,
  MaxResults = 123,
  NextToken = "string"
)