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
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/account-management.md
+15-17Lines changed: 15 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,23 @@
1
1
---
2
2
title: "Account Management"
3
-
linkTitle: "Account Management"
4
3
description: Get started with AWS Account Management on LocalStack
5
4
tags: ["Ultimate"]
6
5
---
7
6
8
7
## Introduction
9
8
10
-
The Account service provides APIs to manage your AWS account.
9
+
Account service provides APIs to manage your AWS account.
11
10
You can use the Account APIs to retrieve information about your account, manage your contact information and alternate contacts.
12
11
Additionally, you can use the Account APIs to enable or disable a region for your account, and delete alternate contacts in your account.
13
12
14
13
LocalStack allows you to use the Account API to retrieve information about your account.
15
-
The supported APIs are available on our [API coverage page]({{< ref "coverage_account" >}}), which provides information on the extent of Account's integration with LocalStack.
14
+
The supported APIs are available on our [API coverage page](), which provides information on the extent of Account's integration with LocalStack.
16
15
17
-
{{< callout >}}
18
-
LocalStack's Account provider is mock-only and does not support any real AWS account.
16
+
:::note
17
+
LocalStack's Account provider is mock-only and does not support connecting to any real AWS account.
19
18
The Account APIs are only intended to demonstrate how you can use and mock the AWS Account APIs in your local environment.
20
19
It's important to note that LocalStack doesn't offer a programmatic interface to manage your AWS or your LocalStack account.
21
-
{{< /callout >}}
20
+
:::
22
21
23
22
## Getting started
24
23
@@ -32,8 +31,8 @@ We will demonstrate how to put contact information, fetch account details, and a
32
31
You can use the [`PutContactInformation`](https://docs.aws.amazon.com/accounts/latest/reference/API_PutContactInformation.html) API to add or update the contact information for your AWS account.
33
32
Run the following command to add contact information to your account:
You can use the [`GetContactInformation`](https://docs.aws.amazon.com/accounts/latest/reference/API_GetContactInformation.html) API to retrieve the contact information for your AWS account.
51
50
Run the following command to fetch the contact information for your account:
52
51
53
-
{{< command >}}
54
-
$ awslocal account get-contact-information
55
-
{{< /command >}}
52
+
```bash
53
+
awslocal account get-contact-information
54
+
```
56
55
57
56
The command will return the contact information for your account:
58
57
@@ -75,22 +74,21 @@ The command will return the contact information for your account:
75
74
You can attach an alternate contact using [`PutAlternateContact`](https://docs.aws.amazon.com/accounts/latest/reference/API_PutAlternateContact.html) API.
76
75
Run the following command to attach an alternate contact to your account:
The LocalStack Web Application provides a Resource Browser for managing contact information & alternate accounts for the Account service.
90
89
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the Resources section, and then clicking on **Account** under the **Management & Governance** section.
0 commit comments