awsExternalSystemAccessFinding resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents findings related to external accounts that are able to access a given AWS account.

Inherits from finding.

Methods

Method Return type Description
List awsExternalSystemAccessFinding collection Get a list of the awsExternalSystemAccessFinding objects and their properties.
Get awsExternalSystemAccessFinding Read the properties and relationships of an awsExternalSystemAccessFinding object.

Properties

Property Type Description
accessMethods externalSystemAccessMethods Specifies if the system can be accessed directly, via role chaining, or both. The possible values are: direct, roleChaining, unknownFutureValue. Supports $filter (eq).
createdDateTime DateTimeOffset Defines when the finding was created. Inherited from finding.
id String Unique identifier for the finding. Inherited from entity.
systemWithAccessId string The account ID for the external system that is able to access the given system.
systemWithAccess authorizationSystemInfo The external system that is able to access the given system.
trustedIdentityCount Int32 The number of identities in the external system that are trusted, if not all. Supports $orderby.
trustsAllIdentities Boolean Flag that determines if all identities in the external system are trusted, or only a subset.

Relationships

Relationship Type Description
affectedSystem authorizationSystem The system that can be accessed from an external system. Supports $orderby (affectedSystem/authorizationSystemName) and $filter as follows: $filter=affectedSystem/authorizationSystemId IN ['authorizationSystemIds']

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.awsExternalSystemAccessFinding",
  "id": "String (identifier)",
  "createdDateTime": "String (timestamp)",
  "trustsAllIdentities": "Boolean",
  "accessMethods": "String",
  "trustedIdentityCount": "Integer",
  "systemWithAccess": {
    "@odata.type": "microsoft.graph.authorizationSystemInfo"
  }
}