Type de ressource awsStatement
Espace de noms: microsoft.graph
Importante
Les API sous la version /beta
dans Microsoft Graph sont susceptibles d’être modifiées. L’utilisation de ces API dans des applications de production n’est pas prise en charge. Pour déterminer si une API est disponible dans v1.0, utilisez le sélecteur Version .
Spécifie une instruction AWS qui inclut des informations sur une autorisation unique.
Méthodes
Aucun.
Propriétés
Propriété | Type | Description |
---|---|---|
actions | String collection | Actions AWS. |
Condition | awsCondition | Conditions AWS associées à l’instruction . |
Effet | awsStatementEffect | Effet d’action AWS, qu’il s’agisse d’autoriser ou de refuser. Les valeurs possibles sont allow , deny , unknownFutureValue . |
notActions | String collection | AWS Not Actions |
notResources | String collection | Aws , pas de ressources |
resources | String collection | Ressources AWS associées à l’instruction . |
statementId | Chaîne | ID de l’instruction AWS. |
Relations
Aucun.
Représentation JSON
La représentation JSON suivante montre le type de ressource.
{
"@odata.type": "#microsoft.graph.awsStatement",
"statementId": "String (identifier)",
"actions": [
"String"
],
"notActions": [
"String"
],
"resources": [
"String"
],
"notResources": [
"String"
],
"effect": "String",
"condition": {
"@odata.type": "microsoft.graph.awsCondition"
}
}