account_modifications
Creates, updates, deletes, gets or lists an account_modifications resource.
Overview
| Name | account_modifications |
| Type | Resource |
| Id | aws.workspaces.account_modifications |
Fields
The following fields are returned by SELECT queries:
- describe_account_modifications
| Name | Datatype | Description |
|---|---|---|
dedicated_tenancy_management_cidr_range | string | The IP address range, specified as an IPv4 CIDR block, for the management network interface used for the account. (pattern: <code>(^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).0.0)(/(16$))$</code>) |
dedicated_tenancy_support | string | The status of BYOL (whether BYOL is being enabled or disabled). (ENABLED, DISABLED) |
error_code | string | The error code that is returned if the configuration of BYOL cannot be modified. |
error_message | string | The text of the error message that is returned if the configuration of BYOL cannot be modified. |
modification_state | string | The state of the modification to the configuration of BYOL. (PENDING, COMPLETED, FAILED) |
start_time | string (date-time) | The timestamp when the modification of the BYOL configuration was started. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_modifications | select | region | Retrieves a list that describes modifications to the configuration of Bring Your Own License (BYOL) for the specified account. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_account_modifications
Retrieves a list that describes modifications to the configuration of Bring Your Own License (BYOL) for the specified account.
SELECT
dedicated_tenancy_management_cidr_range,
dedicated_tenancy_support,
error_code,
error_message,
modification_state,
start_time
FROM aws.workspaces.account_modifications
WHERE region = '{{ region }}' -- required
;