Skip to main content

challenge_passwords

Creates, updates, deletes, gets or lists a challenge_passwords resource.

Overview

Namechallenge_passwords
TypeResource
Idaws.pca_connector_scep.challenge_passwords

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
passwordstringThe SCEP challenge password.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_challenge_passwordselectchallenge_arn, regionRetrieves the challenge password for the specified Challenge.

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
challenge_arnstringThe Amazon Resource Name (ARN) of the challenge.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the challenge password for the specified Challenge.

SELECT
password
FROM aws.pca_connector_scep.challenge_passwords
WHERE challenge_arn = '{{ challenge_arn }}' -- required
AND region = '{{ region }}' -- required
;