Skip to main content

account_modifications

Creates, updates, deletes, gets or lists an account_modifications resource.

Overview

Nameaccount_modifications
TypeResource
Idaws.workspaces.account_modifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dedicated_tenancy_management_cidr_rangestringThe 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_supportstringThe status of BYOL (whether BYOL is being enabled or disabled). (ENABLED, DISABLED)
error_codestringThe error code that is returned if the configuration of BYOL cannot be modified.
error_messagestringThe text of the error message that is returned if the configuration of BYOL cannot be modified.
modification_statestringThe state of the modification to the configuration of BYOL. (PENDING, COMPLETED, FAILED)
start_timestring (date-time)The timestamp when the modification of the BYOL configuration was started.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_modificationsselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;