github.com/ves/terraform@v0.8.0-beta2/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 ``` 16 resource "aws_api_gateway_client_certificate" "demo" { 17 description = "My client certificate" 18 } 19 20 ``` 21 22 ## Argument Reference 23 24 The following arguments are supported: 25 26 * `description` - (Optional) The description of the client certificate. 27 28 29 ## Attribute Reference 30 31 The following attributes are exported: 32 33 * `id` - The identifier of the client certificate. 34 * `created_date` - The date when the client certificate was created. 35 * `expiration_date` - The date when the client certificate will expire. 36 * `pem_encoded_certificate` - The PEM-encoded public key of the client certificate. 37 38 ## Import 39 40 API Gateway Client Certificates can be imported using the id, e.g. 41 42 ``` 43 $ terraform import aws_api_gateway_client_certificate.demo ab1cqe 44 ```