Class: Aws::APIGateway::Types::UpdateClientCertificateRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#client_certificate_idString

[Required] The identifier of the ClientCertificate resource to be updated.

Returns:

  • (String)


7408
7409
7410
7411
7412
7413
# File 'lib/aws-sdk-apigateway/types.rb', line 7408

class UpdateClientCertificateRequest < Struct.new(
  :client_certificate_id,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end

#patch_operationsArray<Types::PatchOperation>

A list of update operations to be applied to the specified resource and in the order specified in this list.

Returns:



7408
7409
7410
7411
7412
7413
# File 'lib/aws-sdk-apigateway/types.rb', line 7408

class UpdateClientCertificateRequest < Struct.new(
  :client_certificate_id,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end