package smaws-clients
Amazon Web Services SDK clients using EIO
Install
Dune Dependency
Authors
Maintainers
Sources
0.1.preview1.tar.gz
md5=18fb70dbc45e8d81a341b9bed6871bab
sha512=7607dc98acaeed5803b44c9ca32d90c88e7813d4b3e3ae4ec661a0bad16c88dc1476bc780877527ea4cd5a4b7398453c1bb600ce0db14d39afa05dc4762b5ba5
doc/src/smaws-clients.acm/operations.ml.html
Source file operations.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
open Types let (let+) res map = Result.map map res module UpdateCertificateOptions = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidStateException" -> (`InvalidStateException (invalid_state_exception_of_yojson tree path)) | "com.amazonaws.acm", "LimitExceededException" -> (`LimitExceededException (limit_exceeded_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: update_certificate_options_request) -> let input = Serializers.update_certificate_options_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.UpdateCertificateOptions" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end module ResendValidationEmail = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidDomainValidationOptionsException" -> (`InvalidDomainValidationOptionsException (invalid_domain_validation_options_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidStateException" -> (`InvalidStateException (invalid_state_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: resend_validation_email_request) -> let input = Serializers.resend_validation_email_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.ResendValidationEmail" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end module RequestCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidDomainValidationOptionsException" -> (`InvalidDomainValidationOptionsException (invalid_domain_validation_options_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidParameterException" -> (`InvalidParameterException (invalid_parameter_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidTagException" -> (`InvalidTagException (invalid_tag_exception_of_yojson tree path)) | "com.amazonaws.acm", "LimitExceededException" -> (`LimitExceededException (limit_exceeded_exception_of_yojson tree path)) | "com.amazonaws.acm", "TagPolicyException" -> (`TagPolicyException (tag_policy_exception_of_yojson tree path)) | "com.amazonaws.acm", "TooManyTagsException" -> (`TooManyTagsException (too_many_tags_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: request_certificate_request) -> let input = Serializers.request_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.RequestCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.request_certificate_response_of_yojson ~error_deserializer end module RenewCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: renew_certificate_request) -> let input = Serializers.renew_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.RenewCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end module RemoveTagsFromCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidParameterException" -> (`InvalidParameterException (invalid_parameter_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidTagException" -> (`InvalidTagException (invalid_tag_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | "com.amazonaws.acm", "TagPolicyException" -> (`TagPolicyException (tag_policy_exception_of_yojson tree path)) | "com.amazonaws.acm", "ThrottlingException" -> (`ThrottlingException (throttling_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: remove_tags_from_certificate_request) -> let input = Serializers.remove_tags_from_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.RemoveTagsFromCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end module PutAccountConfiguration = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "AccessDeniedException" -> (`AccessDeniedException (access_denied_exception_of_yojson tree path)) | "com.amazonaws.acm", "ConflictException" -> (`ConflictException (conflict_exception_of_yojson tree path)) | "com.amazonaws.acm", "ThrottlingException" -> (`ThrottlingException (throttling_exception_of_yojson tree path)) | "com.amazonaws.acm", "ValidationException" -> (`ValidationException (validation_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: put_account_configuration_request) -> let input = Serializers.put_account_configuration_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.PutAccountConfiguration" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end module ListTagsForCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: list_tags_for_certificate_request) -> let input = Serializers.list_tags_for_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.ListTagsForCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.list_tags_for_certificate_response_of_yojson ~error_deserializer end module ListCertificates = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArgsException" -> (`InvalidArgsException (invalid_args_exception_of_yojson tree path)) | "com.amazonaws.acm", "ValidationException" -> (`ValidationException (validation_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: list_certificates_request) -> let input = Serializers.list_certificates_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.ListCertificates" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.list_certificates_response_of_yojson ~error_deserializer end module ImportCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidParameterException" -> (`InvalidParameterException (invalid_parameter_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidTagException" -> (`InvalidTagException (invalid_tag_exception_of_yojson tree path)) | "com.amazonaws.acm", "LimitExceededException" -> (`LimitExceededException (limit_exceeded_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | "com.amazonaws.acm", "TagPolicyException" -> (`TagPolicyException (tag_policy_exception_of_yojson tree path)) | "com.amazonaws.acm", "TooManyTagsException" -> (`TooManyTagsException (too_many_tags_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: import_certificate_request) -> let input = Serializers.import_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.ImportCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.import_certificate_response_of_yojson ~error_deserializer end module GetCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "RequestInProgressException" -> (`RequestInProgressException (request_in_progress_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: get_certificate_request) -> let input = Serializers.get_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.GetCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.get_certificate_response_of_yojson ~error_deserializer end module GetAccountConfiguration = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "AccessDeniedException" -> (`AccessDeniedException (access_denied_exception_of_yojson tree path)) | "com.amazonaws.acm", "ThrottlingException" -> (`ThrottlingException (throttling_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: unit) -> let input = Serializers.base_unit_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.GetAccountConfiguration" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.get_account_configuration_response_of_yojson ~error_deserializer end module ExportCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "RequestInProgressException" -> (`RequestInProgressException (request_in_progress_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: export_certificate_request) -> let input = Serializers.export_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.ExportCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.export_certificate_response_of_yojson ~error_deserializer end module DescribeCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: describe_certificate_request) -> let input = Serializers.describe_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.DescribeCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.describe_certificate_response_of_yojson ~error_deserializer end module DeleteCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "AccessDeniedException" -> (`AccessDeniedException (access_denied_exception_of_yojson tree path)) | "com.amazonaws.acm", "ConflictException" -> (`ConflictException (conflict_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceInUseException" -> (`ResourceInUseException (resource_in_use_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | "com.amazonaws.acm", "ThrottlingException" -> (`ThrottlingException (throttling_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: delete_certificate_request) -> let input = Serializers.delete_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.DeleteCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end module AddTagsToCertificate = struct let error_deserializer tree path = let open Deserializers in let handler = fun handler tree path -> function | "com.amazonaws.acm", "InvalidArnException" -> (`InvalidArnException (invalid_arn_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidParameterException" -> (`InvalidParameterException (invalid_parameter_exception_of_yojson tree path)) | "com.amazonaws.acm", "InvalidTagException" -> (`InvalidTagException (invalid_tag_exception_of_yojson tree path)) | "com.amazonaws.acm", "ResourceNotFoundException" -> (`ResourceNotFoundException (resource_not_found_exception_of_yojson tree path)) | "com.amazonaws.acm", "TagPolicyException" -> (`TagPolicyException (tag_policy_exception_of_yojson tree path)) | "com.amazonaws.acm", "ThrottlingException" -> (`ThrottlingException (throttling_exception_of_yojson tree path)) | "com.amazonaws.acm", "TooManyTagsException" -> (`TooManyTagsException (too_many_tags_exception_of_yojson tree path)) | _type -> handler tree path _type in Smaws_Lib.Protocols.AwsJson.(error_deserializer (handler Smaws_Lib.Protocols.AwsJson.Errors.default_handler) tree path) let request = fun context (request: add_tags_to_certificate_request) -> let input = Serializers.add_tags_to_certificate_request_to_yojson request in Smaws_Lib.Protocols.AwsJson.request ~shape_name:"CertificateManager.AddTagsToCertificate" ~service ~config:Smaws_Lib.Context.(context.config) ~http:Smaws_Lib.Context.(context.http) ~input ~output_deserializer:Deserializers.base_unit_of_yojson ~error_deserializer end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>