Client Certificate
Provides an API Gateway Client Certificate.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.apigateway.ClientCertificate;
import com.pulumi.aws.apigateway.ClientCertificateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var demo = new ClientCertificate("demo", ClientCertificateArgs.builder()
.description("My client certificate")
.build());
}
}
Content copied to clipboard
Import
API Gateway Client Certificates can be imported using the id, e.g.,
$ pulumi import aws:apigateway/clientCertificate:ClientCertificate demo ab1cqe
Content copied to clipboard
Properties
Link copied to clipboard
Date when the client certificate was created.
Link copied to clipboard
Description of the client certificate.
Link copied to clipboard
Date when the client certificate will expire.
Link copied to clipboard
The PEM-encoded public key of the client certificate.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard