module Aws::Api::ServiceCustomizations

def apply(client_class)

Other tags:
    See: {Customizer} -
    See: {#customize} -

Returns:
  • (void) -

Parameters:
  • client_class (Class) --
def apply(client_class)
  apply_protocol_plugin(client_class)
  endpoint_prefix = client_class.api.metadata('endpointPrefix')
  @customizations[endpoint_prefix].each do |customization|
    Customizer.new(client_class).apply(&customization)
  end
end