Class: Aws::APIGateway::Types::UpdateClientCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateClientCertificateRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateClientCertificateRequest data as a hash:
{
client_certificate_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
A request to change information about an ClientCertificate resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_certificate_id ⇒ String
The identifier of the ClientCertificate resource to be updated.
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations][1].
Instance Attribute Details
#client_certificate_id ⇒ String
The identifier of the ClientCertificate resource to be updated.
6530 6531 6532 6533 6534 6535 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6530 class UpdateClientCertificateRequest < Struct.new( :client_certificate_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see Patch Operations.
6530 6531 6532 6533 6534 6535 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6530 class UpdateClientCertificateRequest < Struct.new( :client_certificate_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |