github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/website/source/docs/providers/aws/r/api_gateway_client_certificate.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_api_gateway_client_certificate" 4 sidebar_current: "docs-aws-resource-api-gateway-client-certificate" 5 description: |- 6 Provides an API Gateway Client Certificate. 7 --- 8 9 # aws\_api\_gateway\_client\_certificate 10 11 Provides an API Gateway Client Certificate. 12 13 ## Example Usage 14 15 ```hcl 16 resource "aws_api_gateway_client_certificate" "demo" { 17 description = "My client certificate" 18 } 19 ``` 20 21 ## Argument Reference 22 23 The following arguments are supported: 24 25 * `description` - (Optional) The description of the client certificate. 26 27 28 ## Attribute Reference 29 30 The following attributes are exported: 31 32 * `id` - The identifier of the client certificate. 33 * `created_date` - The date when the client certificate was created. 34 * `expiration_date` - The date when the client certificate will expire. 35 * `pem_encoded_certificate` - The PEM-encoded public key of the client certificate. 36 37 ## Import 38 39 API Gateway Client Certificates can be imported using the id, e.g. 40 41 ``` 42 $ terraform import aws_api_gateway_client_certificate.demo ab1cqe 43 ```