Skip to main content

endpoint_encryption_modes

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

Overview

Nameendpoint_encryption_modes
TypeResource
Idaws.workspaces.endpoint_encryption_modes

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
modify_endpoint_encryption_modeupdateregion, DirectoryId, EndpointEncryptionModeModifies the endpoint encryption mode that allows you to configure the specified directory between Standard TLS and FIPS 140-2 validated mode.

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)

UPDATE examples

Modifies the endpoint encryption mode that allows you to configure the specified directory between Standard TLS and FIPS 140-2 validated mode.

UPDATE aws.workspaces.endpoint_encryption_modes
SET
DirectoryId = '{{ DirectoryId }}',
EndpointEncryptionMode = '{{ EndpointEncryptionMode }}'
WHERE
region = '{{ region }}' --required
AND DirectoryId = '{{ DirectoryId }}' --required
AND EndpointEncryptionMode = '{{ EndpointEncryptionMode }}' --required;