@aws-sdk/client-rtbfabric 3.1045.0 → 3.1047.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +539 -177
- package/dist-cjs/models/RTBFabricServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +12 -14
- package/dist-cjs/runtimeConfig.js +18 -22
- package/dist-cjs/runtimeConfig.shared.js +9 -10
- package/dist-cjs/schemas/schemas_0.js +200 -10
- package/dist-es/RTBFabric.js +31 -1
- package/dist-es/RTBFabricClient.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/AcceptLinkCommand.js +2 -2
- package/dist-es/commands/AssociateCertificateCommand.js +16 -0
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/CreateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DisassociateCertificateCommand.js +16 -0
- package/dist-es/commands/GetCertificateAssociationCommand.js +16 -0
- package/dist-es/commands/GetInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/GetResponderGatewayCommand.js +2 -2
- package/dist-es/commands/ListCertificateAssociationsCommand.js +16 -0
- package/dist-es/commands/ListLinkRoutingRulesCommand.js +16 -0
- package/dist-es/commands/ListLinksCommand.js +2 -2
- package/dist-es/commands/ListRequesterGatewaysCommand.js +2 -2
- package/dist-es/commands/ListResponderGatewaysCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RejectLinkCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateLinkCommand.js +2 -2
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +2 -2
- package/dist-es/commands/UpdateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/UpdateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/RTBFabricServiceException.js +1 -1
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListCertificateAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListLinkRoutingRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/runtimeConfig.browser.js +4 -6
- package/dist-es/runtimeConfig.js +4 -8
- package/dist-es/runtimeConfig.shared.js +3 -4
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-es/schemas/schemas_0.js +197 -7
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForCertificateAssociated.js +61 -0
- package/dist-es/waiters/waitForCertificateDisassociated.js +52 -0
- package/dist-es/waiters/waitForInboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkAccepted.js +1 -1
- package/dist-es/waiters/waitForLinkActive.js +1 -1
- package/dist-es/waiters/waitForLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkRoutingRuleActive.js +49 -0
- package/dist-es/waiters/waitForLinkRoutingRuleDeleted.js +43 -0
- package/dist-es/waiters/waitForOutboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayActive.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayActive.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +1 -1
- package/dist-types/RTBFabric.d.ts +102 -1
- package/dist-types/RTBFabricClient.d.ts +16 -7
- package/dist-types/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/commands/AssociateCertificateCommand.d.ts +120 -0
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +9 -4
- package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkRoutingRuleCommand.d.ts +115 -0
- package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +118 -0
- package/dist-types/commands/GetCertificateAssociationCommand.d.ts +116 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/ListCertificateAssociationsCommand.d.ts +125 -0
- package/dist-types/commands/ListLinkRoutingRulesCommand.d.ts +143 -0
- package/dist-types/commands/ListLinksCommand.d.ts +6 -4
- package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkRoutingRuleCommand.d.ts +134 -0
- package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +31 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +522 -1
- package/dist-types/pagination/ListCertificateAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListLinkRoutingRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +210 -1
- package/dist-types/ts3.4/RTBFabricClient.d.ts +62 -14
- package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetCertificateAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListCertificateAssociationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinkRoutingRulesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +6 -8
- package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +127 -0
- package/dist-types/ts3.4/pagination/ListCertificateAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListLinkRoutingRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAssociated.d.ts +19 -0
- package/dist-types/ts3.4/waiters/waitForCertificateDisassociated.d.ts +24 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleDeleted.d.ts +20 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForCertificateAssociated.d.ts +15 -0
- package/dist-types/waiters/waitForCertificateDisassociated.d.ts +16 -0
- package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkRoutingRuleActive.d.ts +15 -0
- package/dist-types/waiters/waitForLinkRoutingRuleDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/package.json +13 -35
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ConnectivityType, FilterType, GatewayType, LinkDirection, LinkStatus, Protocol, RequesterGatewayStatus, ResponderErrorMaskingAction, ResponderErrorMaskingLoggingType, ResponderGatewayStatus } from "./enums";
|
|
1
|
+
import type { CertificateAssociationStatus, ConnectivityType, FilterType, GatewayType, LinkDirection, LinkStatus, Protocol, RequesterGatewayStatus, ResponderErrorMaskingAction, ResponderErrorMaskingLoggingType, ResponderGatewayStatus, RuleStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Describes the masking for HTTP error codes.</p>
|
|
4
4
|
* @public
|
|
@@ -416,6 +416,46 @@ export interface AcceptLinkResponse {
|
|
|
416
416
|
*/
|
|
417
417
|
linkId: string | undefined;
|
|
418
418
|
}
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
export interface AssociateCertificateRequest {
|
|
423
|
+
/**
|
|
424
|
+
* <p>The unique identifier of the gateway.</p>
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
gatewayId: string | undefined;
|
|
428
|
+
/**
|
|
429
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate to associate.</p>
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
acmCertificateArn: string | undefined;
|
|
433
|
+
/**
|
|
434
|
+
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value</a>.</p> <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p> <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
clientToken?: string | undefined;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
export interface AssociateCertificateResponse {
|
|
443
|
+
/**
|
|
444
|
+
* <p>The unique identifier of the gateway.</p>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
gatewayId: string | undefined;
|
|
448
|
+
/**
|
|
449
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate.</p>
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
acmCertificateArn: string | undefined;
|
|
453
|
+
/**
|
|
454
|
+
* <p>The status of the certificate association.</p>
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
457
|
+
status: CertificateAssociationStatus | undefined;
|
|
458
|
+
}
|
|
419
459
|
/**
|
|
420
460
|
* <p>The health check configuration for a managed endpoint. Defines how the service probes instances in the Auto Scaling group to determine their health status.</p>
|
|
421
461
|
* @public
|
|
@@ -483,6 +523,32 @@ export interface AutoScalingGroupsConfiguration {
|
|
|
483
523
|
*/
|
|
484
524
|
healthCheckConfig?: HealthCheckConfig | undefined;
|
|
485
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* <p>Describes a summary of a certificate association.</p>
|
|
528
|
+
* @public
|
|
529
|
+
*/
|
|
530
|
+
export interface CertificateAssociationSummary {
|
|
531
|
+
/**
|
|
532
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate.</p>
|
|
533
|
+
* @public
|
|
534
|
+
*/
|
|
535
|
+
acmCertificateArn: string | undefined;
|
|
536
|
+
/**
|
|
537
|
+
* <p>The status of the certificate association.</p>
|
|
538
|
+
* @public
|
|
539
|
+
*/
|
|
540
|
+
status: CertificateAssociationStatus | undefined;
|
|
541
|
+
/**
|
|
542
|
+
* <p>The timestamp of when the certificate was associated.</p>
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
associatedAt?: Date | undefined;
|
|
546
|
+
/**
|
|
547
|
+
* <p>The timestamp of when the certificate association was last updated.</p>
|
|
548
|
+
* @public
|
|
549
|
+
*/
|
|
550
|
+
updatedAt?: Date | undefined;
|
|
551
|
+
}
|
|
486
552
|
/**
|
|
487
553
|
* @public
|
|
488
554
|
*/
|
|
@@ -648,6 +714,115 @@ export interface CreateLinkResponse {
|
|
|
648
714
|
*/
|
|
649
715
|
customerProvidedId?: string | undefined;
|
|
650
716
|
}
|
|
717
|
+
/**
|
|
718
|
+
* Key-value pair for query string matching
|
|
719
|
+
* @public
|
|
720
|
+
*/
|
|
721
|
+
export interface QueryStringKeyValuePair {
|
|
722
|
+
/**
|
|
723
|
+
* RFC 3986 unreserved characters
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
key: string | undefined;
|
|
727
|
+
/**
|
|
728
|
+
* RFC 3986 unreserved characters
|
|
729
|
+
* @public
|
|
730
|
+
*/
|
|
731
|
+
value: string | undefined;
|
|
732
|
+
}
|
|
733
|
+
/**
|
|
734
|
+
* Conditions bag for a routing rule.
|
|
735
|
+
* All non-null fields must match (AND logic). At least one field must be set (enforced by CP).
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
export interface RuleCondition {
|
|
739
|
+
/**
|
|
740
|
+
* Exact host match — RFC 3986 unreserved characters
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
743
|
+
hostHeader?: string | undefined;
|
|
744
|
+
/**
|
|
745
|
+
* Wildcard host pattern (e.g., *.example.com) — RFC 3986 unreserved plus *
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
hostHeaderWildcard?: string | undefined;
|
|
749
|
+
/**
|
|
750
|
+
* Path prefix matching — strict starts-with, no wildcard (preferred for new rules).
|
|
751
|
+
* Must start with /; RFC 3986 unreserved plus /
|
|
752
|
+
* @public
|
|
753
|
+
*/
|
|
754
|
+
pathPrefix?: string | undefined;
|
|
755
|
+
/**
|
|
756
|
+
* Exact path match — must start with /; RFC 3986 unreserved plus /
|
|
757
|
+
* @public
|
|
758
|
+
*/
|
|
759
|
+
pathExact?: string | undefined;
|
|
760
|
+
/**
|
|
761
|
+
* Query string key=value pair match (single pair)
|
|
762
|
+
* @public
|
|
763
|
+
*/
|
|
764
|
+
queryStringEquals?: QueryStringKeyValuePair | undefined;
|
|
765
|
+
/**
|
|
766
|
+
* Query string key presence check (any value accepted) — RFC 3986 unreserved characters
|
|
767
|
+
* @public
|
|
768
|
+
*/
|
|
769
|
+
queryStringExists?: string | undefined;
|
|
770
|
+
}
|
|
771
|
+
/**
|
|
772
|
+
* @public
|
|
773
|
+
*/
|
|
774
|
+
export interface CreateLinkRoutingRuleRequest {
|
|
775
|
+
/**
|
|
776
|
+
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value</a>.</p> <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p> <p>If you retry the operation with the same <code>ClientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
777
|
+
* @public
|
|
778
|
+
*/
|
|
779
|
+
clientToken?: string | undefined;
|
|
780
|
+
/**
|
|
781
|
+
* <p>The unique identifier of the gateway.</p>
|
|
782
|
+
* @public
|
|
783
|
+
*/
|
|
784
|
+
gatewayId: string | undefined;
|
|
785
|
+
/**
|
|
786
|
+
* <p>The unique identifier of the link.</p>
|
|
787
|
+
* @public
|
|
788
|
+
*/
|
|
789
|
+
linkId: string | undefined;
|
|
790
|
+
/**
|
|
791
|
+
* <p>The priority of the routing rule. Lower numbers are evaluated first. Valid values are 1 to 1000. Priority must be unique among non-deleted rules within a link.</p>
|
|
792
|
+
* @public
|
|
793
|
+
*/
|
|
794
|
+
priority: number | undefined;
|
|
795
|
+
/**
|
|
796
|
+
* <p>The conditions for the routing rule. All specified fields must match for the rule to apply. At least one condition field must be set.</p>
|
|
797
|
+
* @public
|
|
798
|
+
*/
|
|
799
|
+
conditions: RuleCondition | undefined;
|
|
800
|
+
/**
|
|
801
|
+
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
802
|
+
* @public
|
|
803
|
+
*/
|
|
804
|
+
tags?: Record<string, string> | undefined;
|
|
805
|
+
}
|
|
806
|
+
/**
|
|
807
|
+
* @public
|
|
808
|
+
*/
|
|
809
|
+
export interface CreateLinkRoutingRuleResponse {
|
|
810
|
+
/**
|
|
811
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
812
|
+
* @public
|
|
813
|
+
*/
|
|
814
|
+
ruleId: string | undefined;
|
|
815
|
+
/**
|
|
816
|
+
* <p>The status of the routing rule.</p>
|
|
817
|
+
* @public
|
|
818
|
+
*/
|
|
819
|
+
status: RuleStatus | undefined;
|
|
820
|
+
/**
|
|
821
|
+
* <p>The timestamp of when the routing rule was created.</p>
|
|
822
|
+
* @public
|
|
823
|
+
*/
|
|
824
|
+
createdAt: Date | undefined;
|
|
825
|
+
}
|
|
651
826
|
/**
|
|
652
827
|
* @public
|
|
653
828
|
*/
|
|
@@ -1016,6 +1191,41 @@ export interface DeleteLinkResponse {
|
|
|
1016
1191
|
*/
|
|
1017
1192
|
status: LinkStatus | undefined;
|
|
1018
1193
|
}
|
|
1194
|
+
/**
|
|
1195
|
+
* @public
|
|
1196
|
+
*/
|
|
1197
|
+
export interface DeleteLinkRoutingRuleRequest {
|
|
1198
|
+
/**
|
|
1199
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1200
|
+
* @public
|
|
1201
|
+
*/
|
|
1202
|
+
gatewayId: string | undefined;
|
|
1203
|
+
/**
|
|
1204
|
+
* <p>The unique identifier of the link.</p>
|
|
1205
|
+
* @public
|
|
1206
|
+
*/
|
|
1207
|
+
linkId: string | undefined;
|
|
1208
|
+
/**
|
|
1209
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1210
|
+
* @public
|
|
1211
|
+
*/
|
|
1212
|
+
ruleId: string | undefined;
|
|
1213
|
+
}
|
|
1214
|
+
/**
|
|
1215
|
+
* @public
|
|
1216
|
+
*/
|
|
1217
|
+
export interface DeleteLinkRoutingRuleResponse {
|
|
1218
|
+
/**
|
|
1219
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1220
|
+
* @public
|
|
1221
|
+
*/
|
|
1222
|
+
ruleId: string | undefined;
|
|
1223
|
+
/**
|
|
1224
|
+
* <p>The status of the routing rule.</p>
|
|
1225
|
+
* @public
|
|
1226
|
+
*/
|
|
1227
|
+
status: RuleStatus | undefined;
|
|
1228
|
+
}
|
|
1019
1229
|
/**
|
|
1020
1230
|
* @public
|
|
1021
1231
|
*/
|
|
@@ -1096,6 +1306,41 @@ export interface DeleteResponderGatewayResponse {
|
|
|
1096
1306
|
*/
|
|
1097
1307
|
status: ResponderGatewayStatus | undefined;
|
|
1098
1308
|
}
|
|
1309
|
+
/**
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1312
|
+
export interface DisassociateCertificateRequest {
|
|
1313
|
+
/**
|
|
1314
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1315
|
+
* @public
|
|
1316
|
+
*/
|
|
1317
|
+
gatewayId: string | undefined;
|
|
1318
|
+
/**
|
|
1319
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate to disassociate.</p>
|
|
1320
|
+
* @public
|
|
1321
|
+
*/
|
|
1322
|
+
acmCertificateArn: string | undefined;
|
|
1323
|
+
}
|
|
1324
|
+
/**
|
|
1325
|
+
* @public
|
|
1326
|
+
*/
|
|
1327
|
+
export interface DisassociateCertificateResponse {
|
|
1328
|
+
/**
|
|
1329
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1330
|
+
* @public
|
|
1331
|
+
*/
|
|
1332
|
+
gatewayId: string | undefined;
|
|
1333
|
+
/**
|
|
1334
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate.</p>
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
acmCertificateArn: string | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>The status of the certificate association.</p>
|
|
1340
|
+
* @public
|
|
1341
|
+
*/
|
|
1342
|
+
status: CertificateAssociationStatus | undefined;
|
|
1343
|
+
}
|
|
1099
1344
|
/**
|
|
1100
1345
|
* @public
|
|
1101
1346
|
*/
|
|
@@ -1191,6 +1436,202 @@ export interface GetLinkResponse {
|
|
|
1191
1436
|
*/
|
|
1192
1437
|
timeoutInMillis?: number | undefined;
|
|
1193
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* @public
|
|
1441
|
+
*/
|
|
1442
|
+
export interface GetLinkRoutingRuleRequest {
|
|
1443
|
+
/**
|
|
1444
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1445
|
+
* @public
|
|
1446
|
+
*/
|
|
1447
|
+
gatewayId: string | undefined;
|
|
1448
|
+
/**
|
|
1449
|
+
* <p>The unique identifier of the link.</p>
|
|
1450
|
+
* @public
|
|
1451
|
+
*/
|
|
1452
|
+
linkId: string | undefined;
|
|
1453
|
+
/**
|
|
1454
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1455
|
+
* @public
|
|
1456
|
+
*/
|
|
1457
|
+
ruleId: string | undefined;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* @public
|
|
1461
|
+
*/
|
|
1462
|
+
export interface GetLinkRoutingRuleResponse {
|
|
1463
|
+
/**
|
|
1464
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1465
|
+
* @public
|
|
1466
|
+
*/
|
|
1467
|
+
gatewayId: string | undefined;
|
|
1468
|
+
/**
|
|
1469
|
+
* <p>The unique identifier of the link.</p>
|
|
1470
|
+
* @public
|
|
1471
|
+
*/
|
|
1472
|
+
linkId: string | undefined;
|
|
1473
|
+
/**
|
|
1474
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1475
|
+
* @public
|
|
1476
|
+
*/
|
|
1477
|
+
ruleId: string | undefined;
|
|
1478
|
+
/**
|
|
1479
|
+
* <p>The priority of the routing rule.</p>
|
|
1480
|
+
* @public
|
|
1481
|
+
*/
|
|
1482
|
+
priority: number | undefined;
|
|
1483
|
+
/**
|
|
1484
|
+
* <p>The conditions for the routing rule.</p>
|
|
1485
|
+
* @public
|
|
1486
|
+
*/
|
|
1487
|
+
conditions: RuleCondition | undefined;
|
|
1488
|
+
/**
|
|
1489
|
+
* <p>The status of the routing rule.</p>
|
|
1490
|
+
* @public
|
|
1491
|
+
*/
|
|
1492
|
+
status: RuleStatus | undefined;
|
|
1493
|
+
/**
|
|
1494
|
+
* <p>The timestamp of when the routing rule was created.</p>
|
|
1495
|
+
* @public
|
|
1496
|
+
*/
|
|
1497
|
+
createdAt: Date | undefined;
|
|
1498
|
+
/**
|
|
1499
|
+
* <p>The timestamp of when the routing rule was last updated.</p>
|
|
1500
|
+
* @public
|
|
1501
|
+
*/
|
|
1502
|
+
updatedAt: Date | undefined;
|
|
1503
|
+
/**
|
|
1504
|
+
* <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
|
|
1505
|
+
* @public
|
|
1506
|
+
*/
|
|
1507
|
+
tags?: Record<string, string> | undefined;
|
|
1508
|
+
}
|
|
1509
|
+
/**
|
|
1510
|
+
* @public
|
|
1511
|
+
*/
|
|
1512
|
+
export interface ListLinkRoutingRulesRequest {
|
|
1513
|
+
/**
|
|
1514
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1515
|
+
* @public
|
|
1516
|
+
*/
|
|
1517
|
+
gatewayId: string | undefined;
|
|
1518
|
+
/**
|
|
1519
|
+
* <p>The unique identifier of the link.</p>
|
|
1520
|
+
* @public
|
|
1521
|
+
*/
|
|
1522
|
+
linkId: string | undefined;
|
|
1523
|
+
/**
|
|
1524
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1525
|
+
* @public
|
|
1526
|
+
*/
|
|
1527
|
+
nextToken?: string | undefined;
|
|
1528
|
+
/**
|
|
1529
|
+
* <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.</p> <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
|
|
1530
|
+
* @public
|
|
1531
|
+
*/
|
|
1532
|
+
maxResults?: number | undefined;
|
|
1533
|
+
}
|
|
1534
|
+
/**
|
|
1535
|
+
* Summary of a routing rule for list responses
|
|
1536
|
+
* @public
|
|
1537
|
+
*/
|
|
1538
|
+
export interface LinkRoutingRuleSummary {
|
|
1539
|
+
/**
|
|
1540
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1541
|
+
* @public
|
|
1542
|
+
*/
|
|
1543
|
+
ruleId: string | undefined;
|
|
1544
|
+
/**
|
|
1545
|
+
* <p>The priority of the routing rule.</p>
|
|
1546
|
+
* @public
|
|
1547
|
+
*/
|
|
1548
|
+
priority: number | undefined;
|
|
1549
|
+
/**
|
|
1550
|
+
* <p>The conditions for the routing rule.</p>
|
|
1551
|
+
* @public
|
|
1552
|
+
*/
|
|
1553
|
+
conditions: RuleCondition | undefined;
|
|
1554
|
+
/**
|
|
1555
|
+
* <p>The status of the routing rule.</p>
|
|
1556
|
+
* @public
|
|
1557
|
+
*/
|
|
1558
|
+
status: RuleStatus | undefined;
|
|
1559
|
+
/**
|
|
1560
|
+
* <p>The timestamp of when the routing rule was created.</p>
|
|
1561
|
+
* @public
|
|
1562
|
+
*/
|
|
1563
|
+
createdAt: Date | undefined;
|
|
1564
|
+
/**
|
|
1565
|
+
* <p>The timestamp of when the routing rule was last updated.</p>
|
|
1566
|
+
* @public
|
|
1567
|
+
*/
|
|
1568
|
+
updatedAt: Date | undefined;
|
|
1569
|
+
}
|
|
1570
|
+
/**
|
|
1571
|
+
* @public
|
|
1572
|
+
*/
|
|
1573
|
+
export interface ListLinkRoutingRulesResponse {
|
|
1574
|
+
/**
|
|
1575
|
+
* <p>The list of routing rules for the link.</p>
|
|
1576
|
+
* @public
|
|
1577
|
+
*/
|
|
1578
|
+
rules?: LinkRoutingRuleSummary[] | undefined;
|
|
1579
|
+
/**
|
|
1580
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1581
|
+
* @public
|
|
1582
|
+
*/
|
|
1583
|
+
nextToken?: string | undefined;
|
|
1584
|
+
}
|
|
1585
|
+
/**
|
|
1586
|
+
* @public
|
|
1587
|
+
*/
|
|
1588
|
+
export interface UpdateLinkRoutingRuleRequest {
|
|
1589
|
+
/**
|
|
1590
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1591
|
+
* @public
|
|
1592
|
+
*/
|
|
1593
|
+
gatewayId: string | undefined;
|
|
1594
|
+
/**
|
|
1595
|
+
* <p>The unique identifier of the link.</p>
|
|
1596
|
+
* @public
|
|
1597
|
+
*/
|
|
1598
|
+
linkId: string | undefined;
|
|
1599
|
+
/**
|
|
1600
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1601
|
+
* @public
|
|
1602
|
+
*/
|
|
1603
|
+
ruleId: string | undefined;
|
|
1604
|
+
/**
|
|
1605
|
+
* <p>The updated priority of the routing rule. Lower numbers are evaluated first. Valid values are 1 to 1000. Priority must be unique among non-deleted rules within a link.</p>
|
|
1606
|
+
* @public
|
|
1607
|
+
*/
|
|
1608
|
+
priority: number | undefined;
|
|
1609
|
+
/**
|
|
1610
|
+
* <p>The updated conditions for the routing rule. All specified fields must match for the rule to apply. At least one condition field must be set.</p>
|
|
1611
|
+
* @public
|
|
1612
|
+
*/
|
|
1613
|
+
conditions: RuleCondition | undefined;
|
|
1614
|
+
}
|
|
1615
|
+
/**
|
|
1616
|
+
* @public
|
|
1617
|
+
*/
|
|
1618
|
+
export interface UpdateLinkRoutingRuleResponse {
|
|
1619
|
+
/**
|
|
1620
|
+
* <p>The unique identifier of the routing rule.</p>
|
|
1621
|
+
* @public
|
|
1622
|
+
*/
|
|
1623
|
+
ruleId: string | undefined;
|
|
1624
|
+
/**
|
|
1625
|
+
* <p>The status of the routing rule.</p>
|
|
1626
|
+
* @public
|
|
1627
|
+
*/
|
|
1628
|
+
status: RuleStatus | undefined;
|
|
1629
|
+
/**
|
|
1630
|
+
* <p>The timestamp of when the routing rule was last updated.</p>
|
|
1631
|
+
* @public
|
|
1632
|
+
*/
|
|
1633
|
+
updatedAt: Date | undefined;
|
|
1634
|
+
}
|
|
1194
1635
|
/**
|
|
1195
1636
|
* @public
|
|
1196
1637
|
*/
|
|
@@ -1467,6 +1908,51 @@ export interface UpdateLinkModuleFlowResponse {
|
|
|
1467
1908
|
*/
|
|
1468
1909
|
status: LinkStatus | undefined;
|
|
1469
1910
|
}
|
|
1911
|
+
/**
|
|
1912
|
+
* @public
|
|
1913
|
+
*/
|
|
1914
|
+
export interface GetCertificateAssociationRequest {
|
|
1915
|
+
/**
|
|
1916
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1917
|
+
* @public
|
|
1918
|
+
*/
|
|
1919
|
+
gatewayId: string | undefined;
|
|
1920
|
+
/**
|
|
1921
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate.</p>
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1924
|
+
acmCertificateArn: string | undefined;
|
|
1925
|
+
}
|
|
1926
|
+
/**
|
|
1927
|
+
* @public
|
|
1928
|
+
*/
|
|
1929
|
+
export interface GetCertificateAssociationResponse {
|
|
1930
|
+
/**
|
|
1931
|
+
* <p>The unique identifier of the gateway.</p>
|
|
1932
|
+
* @public
|
|
1933
|
+
*/
|
|
1934
|
+
gatewayId: string | undefined;
|
|
1935
|
+
/**
|
|
1936
|
+
* <p>The Amazon Resource Name (ARN) of the ACM certificate.</p>
|
|
1937
|
+
* @public
|
|
1938
|
+
*/
|
|
1939
|
+
acmCertificateArn: string | undefined;
|
|
1940
|
+
/**
|
|
1941
|
+
* <p>The status of the certificate association.</p>
|
|
1942
|
+
* @public
|
|
1943
|
+
*/
|
|
1944
|
+
status: CertificateAssociationStatus | undefined;
|
|
1945
|
+
/**
|
|
1946
|
+
* <p>The timestamp of when the certificate was associated.</p>
|
|
1947
|
+
* @public
|
|
1948
|
+
*/
|
|
1949
|
+
associatedAt?: Date | undefined;
|
|
1950
|
+
/**
|
|
1951
|
+
* <p>The timestamp of when the certificate association was last updated.</p>
|
|
1952
|
+
* @public
|
|
1953
|
+
*/
|
|
1954
|
+
updatedAt?: Date | undefined;
|
|
1955
|
+
}
|
|
1470
1956
|
/**
|
|
1471
1957
|
* @public
|
|
1472
1958
|
*/
|
|
@@ -1817,6 +2303,41 @@ export interface GetResponderGatewayResponse {
|
|
|
1817
2303
|
*/
|
|
1818
2304
|
externalInboundEndpoint?: string | undefined;
|
|
1819
2305
|
}
|
|
2306
|
+
/**
|
|
2307
|
+
* @public
|
|
2308
|
+
*/
|
|
2309
|
+
export interface ListCertificateAssociationsRequest {
|
|
2310
|
+
/**
|
|
2311
|
+
* <p>The unique identifier of the gateway.</p>
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
gatewayId: string | undefined;
|
|
2315
|
+
/**
|
|
2316
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
2317
|
+
* @public
|
|
2318
|
+
*/
|
|
2319
|
+
nextToken?: string | undefined;
|
|
2320
|
+
/**
|
|
2321
|
+
* <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.</p> <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
|
|
2322
|
+
* @public
|
|
2323
|
+
*/
|
|
2324
|
+
maxResults?: number | undefined;
|
|
2325
|
+
}
|
|
2326
|
+
/**
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
2329
|
+
export interface ListCertificateAssociationsResponse {
|
|
2330
|
+
/**
|
|
2331
|
+
* <p>The list of certificate associations for the gateway.</p>
|
|
2332
|
+
* @public
|
|
2333
|
+
*/
|
|
2334
|
+
certificateAssociations: CertificateAssociationSummary[] | undefined;
|
|
2335
|
+
/**
|
|
2336
|
+
* <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
2337
|
+
* @public
|
|
2338
|
+
*/
|
|
2339
|
+
nextToken?: string | undefined;
|
|
2340
|
+
}
|
|
1820
2341
|
/**
|
|
1821
2342
|
* @public
|
|
1822
2343
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCertificateAssociationsCommandInput, ListCertificateAssociationsCommandOutput } from "../commands/ListCertificateAssociationsCommand";
|
|
3
|
+
import type { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCertificateAssociations: (config: RTBFabricPaginationConfiguration, input: ListCertificateAssociationsCommandInput, ...rest: any[]) => Paginator<ListCertificateAssociationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListLinkRoutingRulesCommandInput, ListLinkRoutingRulesCommandOutput } from "../commands/ListLinkRoutingRulesCommand";
|
|
3
|
+
import type { RTBFabricPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListLinkRoutingRules: (config: RTBFabricPaginationConfiguration, input: ListLinkRoutingRulesCommandInput, ...rest: any[]) => Paginator<ListLinkRoutingRulesCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCertificateAssociationsPaginator";
|
|
3
|
+
export * from "./ListLinkRoutingRulesPaginator";
|
|
2
4
|
export * from "./ListLinksPaginator";
|
|
3
5
|
export * from "./ListRequesterGatewaysPaginator";
|
|
4
6
|
export * from "./ListResponderGatewaysPaginator";
|
|
@@ -5,13 +5,13 @@ import type { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler: import("@smithy/
|
|
14
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,14 +5,14 @@ import type { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
12
12
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
|
-
requestHandler: RequestHandler | import("@smithy/
|
|
15
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
17
|
sha256: import("@smithy/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,7 +5,7 @@ import type { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
10
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
11
|
protocolSettings: {
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
32
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
34
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
-
defaultsMode: import("@smithy/
|
|
35
|
+
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
36
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
38
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|