Skip to main content

challenge_metadatas

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

Overview

Namechallenge_metadatas
TypeResource
Idaws.pca_connector_scep.challenge_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the challenge. (pattern: <code>arn:aws(-[a-z]+):pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d:\d{12}:connector/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}/challenge/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}</code>)
connector_arnstringThe Amazon Resource Name (ARN) of the connector. (pattern: <code>arn:aws(-[a-z]+):pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d:\d{12}:connector/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}</code>)
created_atstring (date-time)The date and time that the connector was created.
updated_atstring (date-time)The date and time that the connector was updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_challenge_metadataselectchallenge_arn, regionRetrieves the metadata for the specified Challenge.
list_challenge_metadataselectConnectorArn, regionMaxResults, NextTokenRetrieves the challenge metadata for the specified ARN.

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
ConnectorArnstringThe Amazon Resource Name (ARN) of the connector.
challenge_arnstringThe Amazon Resource Name (ARN) of the challenge.
regionstringAWS region (default: us-east-1)
MaxResultsintegerThe maximum number of objects that you want Connector for SCEP to return for this request. If more objects are available, in the response, Connector for SCEP provides a NextToken value that you can use in a subsequent call to get the next batch of objects.
NextTokenstringWhen you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

SELECT examples

Retrieves the metadata for the specified Challenge.

SELECT
arn,
connector_arn,
created_at,
updated_at
FROM aws.pca_connector_scep.challenge_metadatas
WHERE challenge_arn = '{{ challenge_arn }}' -- required
AND region = '{{ region }}' -- required
;