awsStatement 资源类型
命名空间:microsoft.graph
重要
Microsoft Graph /beta
版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
指定包含单个权限相关信息的 AWS 语句。
方法
无。
属性
属性 | 类型 | 说明 |
---|---|---|
actions | 字符串集合 | AWS 操作。 |
条件 | awsCondition | 与 语句关联的 AWS 条件。 |
影响 | awsStatementEffect | AWS 操作效果,是允许还是拒绝。 可能的值包括 allow 、deny 、unknownFutureValue 。 |
notActions | 字符串集合 | AWS Not Actions |
notResources | 字符串集合 | AWS 非资源 |
resources | 字符串集合 | 与 语句关联的 AWS 资源。 |
statementId | String | AWS 语句的 ID。 |
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.awsStatement",
"statementId": "String (identifier)",
"actions": [
"String"
],
"notActions": [
"String"
],
"resources": [
"String"
],
"notResources": [
"String"
],
"effect": "String",
"condition": {
"@odata.type": "microsoft.graph.awsCondition"
}
}