Class: Aws::APIGateway::Types::GetClientCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetClientCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetClientCertificateRequest data as a hash:
{
client_certificate_id: "String", # required
}
A request to get information about the current ClientCertificate resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_certificate_id ⇒ String
[Required] The identifier of the ClientCertificate resource to be described.
Instance Attribute Details
#client_certificate_id ⇒ String
[Required] The identifier of the ClientCertificate resource to be described.
3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3211 class GetClientCertificateRequest < Struct.new( :client_certificate_id) SENSITIVE = [] include Aws::Structure end |