Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PcaConnectorScep

import { PcaConnectorScep } from "https://aws-api-bqtgftz736ft.deno.dev/v0.5/services/pcaconnectorscep.ts?docs=full";
class PcaConnectorScep {
constructor(apiFactory: client.ApiFactory);
async createChallenge(params: CreateChallengeRequest, opts?: client.RequestOptions): Promise<CreateChallengeResponse>;
async createConnector(params: CreateConnectorRequest, opts?: client.RequestOptions): Promise<CreateConnectorResponse>;
async deleteChallenge(params: DeleteChallengeRequest, opts?: client.RequestOptions): Promise<void>;
async deleteConnector(params: DeleteConnectorRequest, opts?: client.RequestOptions): Promise<void>;
async getChallengeMetadata(params: GetChallengeMetadataRequest, opts?: client.RequestOptions): Promise<GetChallengeMetadataResponse>;
async getChallengePassword(params: GetChallengePasswordRequest, opts?: client.RequestOptions): Promise<GetChallengePasswordResponse>;
async getConnector(params: GetConnectorRequest, opts?: client.RequestOptions): Promise<GetConnectorResponse>;
async listChallengeMetadata(params: ListChallengeMetadataRequest, opts?: client.RequestOptions): Promise<ListChallengeMetadataResponse>;
async listConnectors(params?: ListConnectorsRequest, opts?: client.RequestOptions): Promise<ListConnectorsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new PcaConnectorScep(apiFactory: client.ApiFactory)
[src]

§Methods

§

For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors.

To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.

§

Creates a SCEP connector. A SCEP connector links Amazon Web Services Private Certificate Authority to your SCEP-compatible devices and mobile device management (MDM) systems. Before you create a connector, you must complete a set of prerequisites, including creation of a private certificate authority (CA) to use with this connector. For more information, see Connector for SCEP prerequisites.

§
deleteChallenge(params: DeleteChallengeRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the specified Challenge.

§
deleteConnector(params: DeleteConnectorRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the specified Connector. This operation also deletes any challenges associated with the connector.

§

Retrieves the metadata for the specified Challenge.

§

Retrieves the challenge password for the specified Challenge.

§

Retrieves details about the specified Connector. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.

§

Retrieves the challenge metadata for the specified ARN.

§

Lists the connectors belonging to your Amazon Web Services account.

§

Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Adds one or more tags to your resource.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes one or more tags from your resource.

§Static Properties