Logging AWS Private 5G API calls using AWS CloudTrail - AWS Private 5G

Logging AWS Private 5G API calls using AWS CloudTrail

AWS Private 5G is integrated with AWS CloudTrail, a service that provides a record of actions taken by a user, role, or an AWS service in Private 5G. CloudTrail captures all API calls for Private 5G as events. The calls captured include calls from the Private 5G console and code calls to the Private 5G API operations. If you create a trail, you can enable continuous delivery of CloudTrail events to an Amazon S3 bucket, including events for Private 5G. If you don't configure a trail, you can still view the most recent events in the CloudTrail console in Event history. Using the information collected by CloudTrail, you can determine the request that was made to Private 5G, the IP address from which the request was made, who made the request, when it was made, and additional details.

To learn more about CloudTrail, see the AWS CloudTrail User Guide.

Private 5G information in CloudTrail

CloudTrail is enabled on your AWS account when you create the account. When activity occurs in Private 5G, that activity is recorded in a CloudTrail event along with other AWS service events in Event history. You can view, search, and download recent events in your AWS account. For more information, see Viewing Events with CloudTrail Event History.

For an ongoing record of events in your AWS account, including events for Private 5G, create a trail. A trail enables CloudTrail to deliver log files to an Amazon S3 bucket. By default, when you create a trail in the console, the trail applies to all AWS Regions. The trail logs events from all Regions in the AWS partition and delivers the log files to the Amazon S3 bucket that you specify. Additionally, you can configure other AWS services to further analyze and act upon the event data collected in CloudTrail logs. For more information, see the following:

All Private 5G actions are logged by CloudTrail and are documented in the AWS Private 5G API Reference. For example, calls to the CreateNetwork, CreateNetworkSite, and UpdateNetworkSitePlan actions generate entries in the CloudTrail log files.

Every event or log entry contains information about who generated the request. The identity information helps you determine the following:

  • Whether the request was made with root or user credentials.

  • Whether the request was made with temporary security credentials for a role or federated user.

  • Whether the request was made by another AWS service.

For more information, see the CloudTrail userIdentity element.

Understanding Private 5G log file entries

A trail is a configuration that enables delivery of events as log files to an Amazon S3 bucket that you specify. CloudTrail log files contain one or more log entries. An event represents a single request from any source and includes information about the requested action, the date and time of the action, request parameters, and so on. CloudTrail log files aren't an ordered stack trace of the public API calls, so they don't appear in any specific order.

The following example shows a CloudTrail log entry that demonstrates the CreateNetwork action.

{ "eventVersion": "1.08", "userIdentity": { "type": "AssumedRole", "principalId": "AKIAIOSFODNN7EXAMPLE:jdoe", "arn": "arn:aws:sts::111122223333:assumed-role/example/jdoe", "accountId": "111122223333", "accessKeyId": "AKIAI44QH8DHBEXAMPLE", "sessionContext": { "sessionIssuer": { "type": "Role", "principalId": "AKIAIOSFODNN7EXAMPLE", "arn": "arn:aws:iam::111122223333:role/example", "accountId": "111122223333", "userName": "example" }, "webIdFederationData": {}, "attributes": { "creationDate": "2021-11-26T20:24:33Z", "mfaAuthenticated": "false" } } }, "eventTime": "2021-11-26T21:03:58Z", "eventSource": "private-networks.amazonaws.com", "eventName": "CreateNetwork", "awsRegion": "us-east-2", "sourceIPAddress": "XXX.XXX.XXX.XXX", "userAgent": "userAgent", "requestParameters": { "networkName": "ExampleNetwork-1", "description": "An example private network." }, "responseElements": { "network": { "createdAt": "2021-11-26T21:03:58.574Z", "description": "An example private network.", "networkArn": "arn:aws:private-networks:us-east-2:1233456789123:network/ExampleNetwork-1", "networkName": "ExampleNetwork-1", "status": "CREATED" } }, "requestID": "1abcd23e-f4gh-567j-klm8-9np01example", "eventID": "1234a56b-c78d-9e0f-g1h2-34jk5example", "readOnly": false, "eventType": "AwsApiCall", "managementEvent": true, "recipientAccountId": "111122223333", "eventCategory": "Management" }