-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.36.29: Bumping version to 1.36.29 Update changelog based on model updates CLI examples iam, ivs, sts
- Loading branch information
Showing
17 changed files
with
407 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[ | ||
{ | ||
"category": "``bcm-pricing-calculator``", | ||
"description": "Added ConflictException to DeleteBillEstimate.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``ecr``", | ||
"description": "Add support for Dualstack Endpoints", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``network-firewall``", | ||
"description": "Dual-stack endpoints are now supported.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``securityhub``", | ||
"description": "Documentation updates for AWS Security Hub", | ||
"type": "api-change" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
awscli/examples/iam/disable-organizations-root-credentials-management.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
**To disable the RootCredentialsManagement feature in your organization** | ||
|
||
The following ``disable-organizations-root-credentials-management`` command disables the management of privileged root user credentials across member accounts in your organization. :: | ||
|
||
aws iam disable-organizations-root-credentials-management | ||
|
||
Output:: | ||
|
||
{ | ||
"EnabledFeatures": [ | ||
"RootSessions" | ||
] | ||
"OrganizationId": "o-aa111bb222" | ||
} | ||
|
||
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*.g |
16 changes: 16 additions & 0 deletions
16
awscli/examples/iam/disable-organizations-root-sessions.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
**To disable the RootSessions feature in your organization** | ||
|
||
The following ``disable-organizations-root-sessions`` command disables root user sessions for privileged tasks across member accounts in your organization. :: | ||
|
||
aws iam disable-organizations-root-sessions | ||
|
||
Output:: | ||
|
||
{ | ||
"EnabledFeatures": [ | ||
"RootCredentialsManagement" | ||
] | ||
"OrganizationId": "o-aa111bb222" | ||
} | ||
|
||
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*. |
16 changes: 16 additions & 0 deletions
16
awscli/examples/iam/enable-organizations-root-credentials-management.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
**To enable the RootCredentialsManagement feature in your organization** | ||
|
||
The following ``enable-organizations-root-credentials-management`` command enables the management of privileged root user credentials across member accounts in your organization. :: | ||
|
||
aws iam enable-organizations-root-credentials-management | ||
|
||
Output:: | ||
|
||
{ | ||
"EnabledFeatures": [ | ||
"RootCredentialsManagement" | ||
] | ||
"OrganizationId": "o-aa111bb222" | ||
} | ||
|
||
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*. |
16 changes: 16 additions & 0 deletions
16
awscli/examples/iam/enable-organizations-root-sessions.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
**To enable the RootSessions feature in your organization** | ||
|
||
The following ``enable-organizations-root-sessions`` command allows the management account or delegated administrator to perform privileged tasks on member accounts in your organization. :: | ||
|
||
aws iam enable-organizations-root-sessions | ||
|
||
Output:: | ||
|
||
{ | ||
"EnabledFeatures": [ | ||
"RootSessions" | ||
] | ||
"OrganizationId": "o-aa111bb222" | ||
} | ||
|
||
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
**To list the centralized root access features enabled for your organization** | ||
|
||
The following ``list-organizations-features`` command lists the centralized root access features enabled for your organization. :: | ||
|
||
aws iam list-organizations-features | ||
|
||
Output:: | ||
|
||
{ | ||
"EnabledFeatures": [ | ||
"RootCredentialsManagement", | ||
"RootSessions" | ||
] | ||
"OrganizationId": "o-aa111bb222" | ||
} | ||
|
||
For more information, see `Centrally manage root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-user.html#id_root-user-access-management>`__ in the *AWS IAM User Guide*. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.