You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-ssm): This release adds support for cross account access in CreateOpsItem, UpdateOpsItem and GetOpsItem. It introduces new APIs to setup resource policies for SSM resources: PutResourcePolicy, GetResourcePolicies and DeleteResourcePolicy.
@@ -1564,6 +1579,41 @@ export class SSM extends SSMClient {
1564
1579
}
1565
1580
}
1566
1581
1582
+
/**
1583
+
* <p>Deletes a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for example, an Amazon Web Services account) that can manage your Systems Manager resources. Currently,
1584
+
* <code>OpsItemGroup</code> is the only resource that supports Systems Manager resource policies. The
1585
+
* resource policy for <code>OpsItemGroup</code> enables Amazon Web Services accounts to view and interact with
1586
+
* OpsCenter operational work items (OpsItems).</p>
* <p>Deletes a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for example, an Amazon Web Services account) that can manage your Systems Manager resources. Currently,
33
+
* <code>OpsItemGroup</code> is the only resource that supports Systems Manager resource policies. The
34
+
* resource policy for <code>OpsItemGroup</code> enables Amazon Web Services accounts to view and interact with
35
+
* OpsCenter operational work items (OpsItems).</p>
36
+
* @example
37
+
* Use a bare-bones client and the command you need to make an API call.
38
+
* ```javascript
39
+
* import { SSMClient, DeleteResourcePolicyCommand } from "@aws-sdk/client-ssm"; // ES Modules import
0 commit comments