endpoint_encryption_modes
Creates, updates, deletes, gets or lists an endpoint_encryption_modes resource.
Overview
| Name | endpoint_encryption_modes |
| Type | Resource |
| Id | aws.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
modify_endpoint_encryption_mode | update | region, DirectoryId, EndpointEncryptionMode | Modifies 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
UPDATE examples
- modify_endpoint_encryption_mode
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;