awsPolicy 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 an AWS policy in an AWS authorization system. An AWS policy is an object in AWS that defines the permissions of the associated entity or resource. When a principal, such as a user, makes a request, the policies and their associated permissions determine whether the request is allowed or denied.

Inherits from entity.

Methods

Method Return type Description
List awsPolicy collection List all awsPolicy objects and their properties for a specific AWS authorization system.
Get awsPolicy Read the properties and relationships of a single awsPolicy object in an AWS authorization system.

Properties

Property Type Description
awsPolicyType awsPolicyType The type of the AWS policy. The possible values are: system, custom, unknownFutureValue. Read-only. Supports $filter and (eq).
displayName String The display name for the AWS policy. Read-only. Supports $filter and (eq,contains).
externalId String The base64 encoded identifier for the AWS policy as defined by AWS. Read-only. Alternate key. Supports $filter and eq.
id String The unique encoded identifier for the AWS policy. Read-only. Inherited from entity.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.awsPolicy",
  "id": "String (identifier)",
  "externalId": "String",
  "displayName": "String",
  "awsPolicyType": "String"
}