@aws-sdk/client-rtbfabric 3.1024.0 → 3.1026.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/dist-cjs/index.js +182 -11
- package/dist-cjs/schemas/schemas_0.js +49 -36
- package/dist-es/RTBFabric.js +6 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/schemas/schemas_0.js +47 -34
- package/dist-es/waiters/index.js +3 -0
- package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +49 -0
- package/dist-es/waiters/waitForLinkDeleted.js +49 -0
- package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +49 -0
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +3 -0
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +3 -0
- package/dist-types/RTBFabric.d.ts +18 -0
- package/dist-types/commands/AcceptLinkCommand.d.ts +10 -0
- package/dist-types/commands/CreateLinkCommand.d.ts +12 -2
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +12 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +2 -1
- package/dist-types/commands/GetLinkCommand.d.ts +7 -4
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +102 -0
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +7 -0
- package/dist-types/commands/ListLinksCommand.d.ts +10 -0
- package/dist-types/commands/RejectLinkCommand.d.ts +9 -0
- package/dist-types/commands/UpdateLinkCommand.d.ts +1 -0
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +5 -0
- package/dist-types/models/enums.d.ts +26 -0
- package/dist-types/models/models_0.d.ts +159 -8
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +27 -0
- package/dist-types/ts3.4/models/enums.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/waiters/index.d.ts +3 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +3 -0
- package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForLinkDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +14 -0
- package/package.json +34 -34
|
@@ -47,6 +47,107 @@ declare const GetOutboundExternalLinkCommand_base: {
|
|
|
47
47
|
* // linkId: "STRING_VALUE", // required
|
|
48
48
|
* // status: "PENDING_CREATION" || "PENDING_REQUEST" || "REQUESTED" || "ACCEPTED" || "ACTIVE" || "REJECTED" || "FAILED" || "PENDING_DELETION" || "DELETED" || "PENDING_UPDATE" || "PENDING_ISOLATION" || "ISOLATED" || "PENDING_RESTORATION", // required
|
|
49
49
|
* // publicEndpoint: "STRING_VALUE", // required
|
|
50
|
+
* // flowModules: [ // ModuleConfigurationList
|
|
51
|
+
* // { // ModuleConfiguration
|
|
52
|
+
* // version: "STRING_VALUE",
|
|
53
|
+
* // name: "STRING_VALUE", // required
|
|
54
|
+
* // dependsOn: [ // FlowModuleNameList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // moduleParameters: { // ModuleParameters Union: only one key present
|
|
58
|
+
* // noBid: { // NoBidModuleParameters
|
|
59
|
+
* // reason: "STRING_VALUE",
|
|
60
|
+
* // reasonCode: Number("int"),
|
|
61
|
+
* // passThroughPercentage: Number("float"),
|
|
62
|
+
* // },
|
|
63
|
+
* // openRtbAttribute: { // OpenRtbAttributeModuleParameters
|
|
64
|
+
* // filterType: "INCLUDE" || "EXCLUDE", // required
|
|
65
|
+
* // filterConfiguration: [ // FilterConfiguration // required
|
|
66
|
+
* // { // Filter
|
|
67
|
+
* // criteria: [ // FilterCriteria // required
|
|
68
|
+
* // { // FilterCriterion
|
|
69
|
+
* // path: "STRING_VALUE", // required
|
|
70
|
+
* // values: [ // ValueList // required
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // action: { // Action Union: only one key present
|
|
78
|
+
* // noBid: { // NoBidAction
|
|
79
|
+
* // noBidReasonCode: Number("int"),
|
|
80
|
+
* // },
|
|
81
|
+
* // headerTag: { // HeaderTagAction
|
|
82
|
+
* // name: "STRING_VALUE", // required
|
|
83
|
+
* // value: "STRING_VALUE", // required
|
|
84
|
+
* // },
|
|
85
|
+
* // },
|
|
86
|
+
* // holdbackPercentage: Number("float"), // required
|
|
87
|
+
* // },
|
|
88
|
+
* // rateLimiter: { // RateLimiterModuleParameters
|
|
89
|
+
* // tps: Number("float"),
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // pendingFlowModules: [
|
|
95
|
+
* // {
|
|
96
|
+
* // version: "STRING_VALUE",
|
|
97
|
+
* // name: "STRING_VALUE", // required
|
|
98
|
+
* // dependsOn: [
|
|
99
|
+
* // "STRING_VALUE",
|
|
100
|
+
* // ],
|
|
101
|
+
* // moduleParameters: {// Union: only one key present
|
|
102
|
+
* // noBid: {
|
|
103
|
+
* // reason: "STRING_VALUE",
|
|
104
|
+
* // reasonCode: Number("int"),
|
|
105
|
+
* // passThroughPercentage: Number("float"),
|
|
106
|
+
* // },
|
|
107
|
+
* // openRtbAttribute: {
|
|
108
|
+
* // filterType: "INCLUDE" || "EXCLUDE", // required
|
|
109
|
+
* // filterConfiguration: [ // required
|
|
110
|
+
* // {
|
|
111
|
+
* // criteria: [ // required
|
|
112
|
+
* // {
|
|
113
|
+
* // path: "STRING_VALUE", // required
|
|
114
|
+
* // values: [ // required
|
|
115
|
+
* // "STRING_VALUE",
|
|
116
|
+
* // ],
|
|
117
|
+
* // },
|
|
118
|
+
* // ],
|
|
119
|
+
* // },
|
|
120
|
+
* // ],
|
|
121
|
+
* // action: {// Union: only one key present
|
|
122
|
+
* // noBid: {
|
|
123
|
+
* // noBidReasonCode: Number("int"),
|
|
124
|
+
* // },
|
|
125
|
+
* // headerTag: {
|
|
126
|
+
* // name: "STRING_VALUE", // required
|
|
127
|
+
* // value: "STRING_VALUE", // required
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // holdbackPercentage: Number("float"), // required
|
|
131
|
+
* // },
|
|
132
|
+
* // rateLimiter: {
|
|
133
|
+
* // tps: Number("float"),
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // },
|
|
137
|
+
* // ],
|
|
138
|
+
* // attributes: { // LinkAttributes
|
|
139
|
+
* // responderErrorMasking: [ // ResponderErrorMasking
|
|
140
|
+
* // { // ResponderErrorMaskingForHttpCode
|
|
141
|
+
* // httpCode: "STRING_VALUE", // required
|
|
142
|
+
* // action: "NO_BID" || "PASSTHROUGH", // required
|
|
143
|
+
* // loggingTypes: [ // ResponderErrorMaskingLoggingTypes // required
|
|
144
|
+
* // "NONE" || "METRIC" || "RESPONSE",
|
|
145
|
+
* // ],
|
|
146
|
+
* // responseLoggingPercentage: Number("float"),
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // customerProvidedId: "STRING_VALUE",
|
|
150
|
+
* // },
|
|
50
151
|
* // createdAt: new Date("TIMESTAMP"),
|
|
51
152
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
52
153
|
* // tags: { // TagsMap
|
|
@@ -60,6 +161,7 @@ declare const GetOutboundExternalLinkCommand_base: {
|
|
|
60
161
|
* // },
|
|
61
162
|
* // },
|
|
62
163
|
* // },
|
|
164
|
+
* // connectivityType: "DEFAULT" || "PUBLIC_INGRESS" || "PUBLIC_EGRESS" || "EXTERNAL_INBOUND",
|
|
63
165
|
* // };
|
|
64
166
|
*
|
|
65
167
|
* ```
|
|
@@ -56,6 +56,11 @@ declare const GetResponderGatewayCommand_base: {
|
|
|
56
56
|
* // domainName: "STRING_VALUE",
|
|
57
57
|
* // port: Number("int"), // required
|
|
58
58
|
* // protocol: "HTTP" || "HTTPS", // required
|
|
59
|
+
* // listenerConfig: { // ListenerConfig
|
|
60
|
+
* // protocols: [ // ProtocolList // required
|
|
61
|
+
* // "HTTP" || "HTTPS",
|
|
62
|
+
* // ],
|
|
63
|
+
* // },
|
|
59
64
|
* // trustStoreConfiguration: { // TrustStoreConfiguration
|
|
60
65
|
* // certificateAuthorityCertificates: [ // CertificateAuthorityCertificates // required
|
|
61
66
|
* // "STRING_VALUE",
|
|
@@ -84,6 +89,8 @@ declare const GetResponderGatewayCommand_base: {
|
|
|
84
89
|
* // activeLinksCount: Number("int"),
|
|
85
90
|
* // totalLinksCount: Number("int"),
|
|
86
91
|
* // inboundLinksCount: Number("int"),
|
|
92
|
+
* // gatewayType: "EXTERNAL" || "INTERNAL",
|
|
93
|
+
* // externalInboundEndpoint: "STRING_VALUE",
|
|
87
94
|
* // };
|
|
88
95
|
*
|
|
89
96
|
* ```
|
|
@@ -153,10 +153,20 @@ declare const ListLinksCommand_base: {
|
|
|
153
153
|
* // ],
|
|
154
154
|
* // customerProvidedId: "STRING_VALUE",
|
|
155
155
|
* // },
|
|
156
|
+
* // logSettings: { // LinkLogSettings
|
|
157
|
+
* // applicationLogs: { // LinkApplicationLogConfiguration
|
|
158
|
+
* // sampling: { // LinkApplicationLogSampling
|
|
159
|
+
* // errorLog: Number("double"), // required
|
|
160
|
+
* // filterLog: Number("double"), // required
|
|
161
|
+
* // },
|
|
162
|
+
* // },
|
|
163
|
+
* // },
|
|
164
|
+
* // connectivityType: "DEFAULT" || "PUBLIC_INGRESS" || "PUBLIC_EGRESS" || "EXTERNAL_INBOUND",
|
|
156
165
|
* // linkId: "STRING_VALUE", // required
|
|
157
166
|
* // tags: { // TagsMap
|
|
158
167
|
* // "<keys>": "STRING_VALUE",
|
|
159
168
|
* // },
|
|
169
|
+
* // publicEndpoint: "STRING_VALUE",
|
|
160
170
|
* // },
|
|
161
171
|
* // ],
|
|
162
172
|
* // nextToken: "STRING_VALUE",
|
|
@@ -150,6 +150,15 @@ declare const RejectLinkCommand_base: {
|
|
|
150
150
|
* // ],
|
|
151
151
|
* // customerProvidedId: "STRING_VALUE",
|
|
152
152
|
* // },
|
|
153
|
+
* // logSettings: { // LinkLogSettings
|
|
154
|
+
* // applicationLogs: { // LinkApplicationLogConfiguration
|
|
155
|
+
* // sampling: { // LinkApplicationLogSampling
|
|
156
|
+
* // errorLog: Number("double"), // required
|
|
157
|
+
* // filterLog: Number("double"), // required
|
|
158
|
+
* // },
|
|
159
|
+
* // },
|
|
160
|
+
* // },
|
|
161
|
+
* // connectivityType: "DEFAULT" || "PUBLIC_INGRESS" || "PUBLIC_EGRESS" || "EXTERNAL_INBOUND",
|
|
153
162
|
* // linkId: "STRING_VALUE", // required
|
|
154
163
|
* // };
|
|
155
164
|
*
|
|
@@ -40,6 +40,11 @@ declare const UpdateResponderGatewayCommand_base: {
|
|
|
40
40
|
* domainName: "STRING_VALUE",
|
|
41
41
|
* port: Number("int"), // required
|
|
42
42
|
* protocol: "HTTP" || "HTTPS", // required
|
|
43
|
+
* listenerConfig: { // ListenerConfig
|
|
44
|
+
* protocols: [ // ProtocolList // required
|
|
45
|
+
* "HTTP" || "HTTPS",
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
43
48
|
* trustStoreConfiguration: { // TrustStoreConfiguration
|
|
44
49
|
* certificateAuthorityCertificates: [ // CertificateAuthorityCertificates // required
|
|
45
50
|
* "STRING_VALUE",
|
|
@@ -23,6 +23,20 @@ export declare const ResponderErrorMaskingLoggingType: {
|
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
25
|
export type ResponderErrorMaskingLoggingType = (typeof ResponderErrorMaskingLoggingType)[keyof typeof ResponderErrorMaskingLoggingType];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const ConnectivityType: {
|
|
31
|
+
readonly DEFAULT: "DEFAULT";
|
|
32
|
+
readonly EXTERNAL_INBOUND: "EXTERNAL_INBOUND";
|
|
33
|
+
readonly PUBLIC_EGRESS: "PUBLIC_EGRESS";
|
|
34
|
+
readonly PUBLIC_INGRESS: "PUBLIC_INGRESS";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type ConnectivityType = (typeof ConnectivityType)[keyof typeof ConnectivityType];
|
|
26
40
|
/**
|
|
27
41
|
* @public
|
|
28
42
|
* @enum
|
|
@@ -89,6 +103,18 @@ export declare const RequesterGatewayStatus: {
|
|
|
89
103
|
* @public
|
|
90
104
|
*/
|
|
91
105
|
export type RequesterGatewayStatus = (typeof RequesterGatewayStatus)[keyof typeof RequesterGatewayStatus];
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* @enum
|
|
109
|
+
*/
|
|
110
|
+
export declare const GatewayType: {
|
|
111
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
112
|
+
readonly INTERNAL: "INTERNAL";
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export type GatewayType = (typeof GatewayType)[keyof typeof GatewayType];
|
|
92
118
|
/**
|
|
93
119
|
* @public
|
|
94
120
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { FilterType, LinkDirection, LinkStatus, Protocol, RequesterGatewayStatus, ResponderErrorMaskingAction, ResponderErrorMaskingLoggingType, ResponderGatewayStatus } from "./enums";
|
|
1
|
+
import type { ConnectivityType, FilterType, GatewayType, LinkDirection, LinkStatus, Protocol, RequesterGatewayStatus, ResponderErrorMaskingAction, ResponderErrorMaskingLoggingType, ResponderGatewayStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Describes the masking for HTTP error codes.</p>
|
|
4
4
|
* @public
|
|
@@ -103,6 +103,11 @@ export interface AcceptLinkRequest {
|
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
105
|
logSettings: LinkLogSettings | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The timeout value in milliseconds.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
timeoutInMillis?: number | undefined;
|
|
106
111
|
}
|
|
107
112
|
/**
|
|
108
113
|
* <p>Describes the parameters of a no bid module.</p>
|
|
@@ -395,6 +400,16 @@ export interface AcceptLinkResponse {
|
|
|
395
400
|
* @public
|
|
396
401
|
*/
|
|
397
402
|
attributes?: LinkAttributes | undefined;
|
|
403
|
+
/**
|
|
404
|
+
* <p>Describes the settings for a link log.</p>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
logSettings?: LinkLogSettings | undefined;
|
|
408
|
+
/**
|
|
409
|
+
* <p>The connectivity type of the link.</p>
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
connectivityType?: ConnectivityType | undefined;
|
|
398
413
|
/**
|
|
399
414
|
* <p>The unique identifier of the link.</p>
|
|
400
415
|
* @public
|
|
@@ -437,7 +452,7 @@ export interface CreateInboundExternalLinkRequest {
|
|
|
437
452
|
*/
|
|
438
453
|
attributes?: LinkAttributes | undefined;
|
|
439
454
|
/**
|
|
440
|
-
* <p>
|
|
455
|
+
* <p>Settings for the application logs.</p>
|
|
441
456
|
* @public
|
|
442
457
|
*/
|
|
443
458
|
logSettings: LinkLogSettings | undefined;
|
|
@@ -506,6 +521,11 @@ export interface CreateLinkRequest {
|
|
|
506
521
|
* @public
|
|
507
522
|
*/
|
|
508
523
|
logSettings: LinkLogSettings | undefined;
|
|
524
|
+
/**
|
|
525
|
+
* <p>The timeout value in milliseconds.</p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
timeoutInMillis?: number | undefined;
|
|
509
529
|
}
|
|
510
530
|
/**
|
|
511
531
|
* @public
|
|
@@ -556,6 +576,16 @@ export interface CreateLinkResponse {
|
|
|
556
576
|
* @public
|
|
557
577
|
*/
|
|
558
578
|
attributes?: LinkAttributes | undefined;
|
|
579
|
+
/**
|
|
580
|
+
* <p>Describes the settings for a link log.</p>
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
logSettings?: LinkLogSettings | undefined;
|
|
584
|
+
/**
|
|
585
|
+
* <p>The connectivity type of the link.</p>
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
connectivityType?: ConnectivityType | undefined;
|
|
559
589
|
/**
|
|
560
590
|
* <p>The unique identifier of the link.</p>
|
|
561
591
|
* @public
|
|
@@ -582,7 +612,7 @@ export interface CreateOutboundExternalLinkRequest {
|
|
|
582
612
|
*/
|
|
583
613
|
gatewayId: string | undefined;
|
|
584
614
|
/**
|
|
585
|
-
* <p>
|
|
615
|
+
* <p>Attributes of the link.</p>
|
|
586
616
|
* @public
|
|
587
617
|
*/
|
|
588
618
|
attributes?: LinkAttributes | undefined;
|
|
@@ -592,7 +622,7 @@ export interface CreateOutboundExternalLinkRequest {
|
|
|
592
622
|
*/
|
|
593
623
|
publicEndpoint: string | undefined;
|
|
594
624
|
/**
|
|
595
|
-
* <p>
|
|
625
|
+
* <p>Settings for the application logs.</p>
|
|
596
626
|
* @public
|
|
597
627
|
*/
|
|
598
628
|
logSettings: LinkLogSettings | undefined;
|
|
@@ -677,6 +707,17 @@ export interface CreateRequesterGatewayResponse {
|
|
|
677
707
|
*/
|
|
678
708
|
status: RequesterGatewayStatus | undefined;
|
|
679
709
|
}
|
|
710
|
+
/**
|
|
711
|
+
* <p>Listener configuration for the protocols (HTTP, HTTPS, or both) accepted by the gateway.</p>
|
|
712
|
+
* @public
|
|
713
|
+
*/
|
|
714
|
+
export interface ListenerConfig {
|
|
715
|
+
/**
|
|
716
|
+
* <p>The protocol for connections from clients to the gateway</p>
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
719
|
+
protocols: Protocol[] | undefined;
|
|
720
|
+
}
|
|
680
721
|
/**
|
|
681
722
|
* <p>Describes the configuration of an Amazon Elastic Kubernetes Service endpoint.</p>
|
|
682
723
|
* @public
|
|
@@ -803,6 +844,11 @@ export interface CreateResponderGatewayRequest {
|
|
|
803
844
|
* @public
|
|
804
845
|
*/
|
|
805
846
|
protocol: Protocol | undefined;
|
|
847
|
+
/**
|
|
848
|
+
* <p>Listener configuration for the protocols (HTTP, HTTPS, or both) accepted by the gateway.</p>
|
|
849
|
+
* @public
|
|
850
|
+
*/
|
|
851
|
+
listenerConfig?: ListenerConfig | undefined;
|
|
806
852
|
/**
|
|
807
853
|
* <p>The configuration of the trust store.</p>
|
|
808
854
|
* @public
|
|
@@ -828,6 +874,11 @@ export interface CreateResponderGatewayRequest {
|
|
|
828
874
|
* @public
|
|
829
875
|
*/
|
|
830
876
|
tags?: Record<string, string> | undefined;
|
|
877
|
+
/**
|
|
878
|
+
* <p>The type of gateway. Valid values are <code>EXTERNAL</code> or <code>INTERNAL</code>.</p>
|
|
879
|
+
* @public
|
|
880
|
+
*/
|
|
881
|
+
gatewayType?: GatewayType | undefined;
|
|
831
882
|
}
|
|
832
883
|
/**
|
|
833
884
|
* @public
|
|
@@ -843,6 +894,16 @@ export interface CreateResponderGatewayResponse {
|
|
|
843
894
|
* @public
|
|
844
895
|
*/
|
|
845
896
|
status: ResponderGatewayStatus | undefined;
|
|
897
|
+
/**
|
|
898
|
+
* <p>The listener configuration for the responder gateway.</p>
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
901
|
+
listenerConfig?: ListenerConfig | undefined;
|
|
902
|
+
/**
|
|
903
|
+
* <p>The external inbound endpoint for the responder gateway.</p>
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
906
|
+
externalInboundEndpoint?: string | undefined;
|
|
846
907
|
}
|
|
847
908
|
/**
|
|
848
909
|
* @public
|
|
@@ -1048,6 +1109,16 @@ export interface GetLinkResponse {
|
|
|
1048
1109
|
* @public
|
|
1049
1110
|
*/
|
|
1050
1111
|
attributes?: LinkAttributes | undefined;
|
|
1112
|
+
/**
|
|
1113
|
+
* <p>Settings for the application logs.</p>
|
|
1114
|
+
* @public
|
|
1115
|
+
*/
|
|
1116
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1117
|
+
/**
|
|
1118
|
+
* <p>The connectivity type of the link.</p>
|
|
1119
|
+
* @public
|
|
1120
|
+
*/
|
|
1121
|
+
connectivityType?: ConnectivityType | undefined;
|
|
1051
1122
|
/**
|
|
1052
1123
|
* <p>The unique identifier of the link.</p>
|
|
1053
1124
|
* @public
|
|
@@ -1059,10 +1130,15 @@ export interface GetLinkResponse {
|
|
|
1059
1130
|
*/
|
|
1060
1131
|
tags?: Record<string, string> | undefined;
|
|
1061
1132
|
/**
|
|
1062
|
-
* <p>
|
|
1133
|
+
* <p>Boolean to specify if an HTTP responder is allowed.</p>
|
|
1063
1134
|
* @public
|
|
1064
1135
|
*/
|
|
1065
|
-
|
|
1136
|
+
httpResponderAllowed?: boolean | undefined;
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>The timeout value in milliseconds.</p>
|
|
1139
|
+
* @public
|
|
1140
|
+
*/
|
|
1141
|
+
timeoutInMillis?: number | undefined;
|
|
1066
1142
|
}
|
|
1067
1143
|
/**
|
|
1068
1144
|
* @public
|
|
@@ -1134,6 +1210,16 @@ export interface ListLinksResponseStructure {
|
|
|
1134
1210
|
* @public
|
|
1135
1211
|
*/
|
|
1136
1212
|
attributes?: LinkAttributes | undefined;
|
|
1213
|
+
/**
|
|
1214
|
+
* <p>Describes the settings for a link log.</p>
|
|
1215
|
+
* @public
|
|
1216
|
+
*/
|
|
1217
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1218
|
+
/**
|
|
1219
|
+
* <p>The connectivity type of the link.</p>
|
|
1220
|
+
* @public
|
|
1221
|
+
*/
|
|
1222
|
+
connectivityType?: ConnectivityType | undefined;
|
|
1137
1223
|
/**
|
|
1138
1224
|
* <p>The unique identifier of the link.</p>
|
|
1139
1225
|
* @public
|
|
@@ -1144,6 +1230,11 @@ export interface ListLinksResponseStructure {
|
|
|
1144
1230
|
* @public
|
|
1145
1231
|
*/
|
|
1146
1232
|
tags?: Record<string, string> | undefined;
|
|
1233
|
+
/**
|
|
1234
|
+
* <p>The public endpoint of the outbound link.</p>
|
|
1235
|
+
* @public
|
|
1236
|
+
*/
|
|
1237
|
+
publicEndpoint?: string | undefined;
|
|
1147
1238
|
}
|
|
1148
1239
|
/**
|
|
1149
1240
|
* @public
|
|
@@ -1224,6 +1315,16 @@ export interface RejectLinkResponse {
|
|
|
1224
1315
|
* @public
|
|
1225
1316
|
*/
|
|
1226
1317
|
attributes?: LinkAttributes | undefined;
|
|
1318
|
+
/**
|
|
1319
|
+
* <p>Describes the settings for a link log.</p>
|
|
1320
|
+
* @public
|
|
1321
|
+
*/
|
|
1322
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1323
|
+
/**
|
|
1324
|
+
* <p>The connectivity type of the link.</p>
|
|
1325
|
+
* @public
|
|
1326
|
+
*/
|
|
1327
|
+
connectivityType?: ConnectivityType | undefined;
|
|
1227
1328
|
/**
|
|
1228
1329
|
* <p>The unique identifier of the link.</p>
|
|
1229
1330
|
* @public
|
|
@@ -1249,6 +1350,11 @@ export interface UpdateLinkRequest {
|
|
|
1249
1350
|
* @public
|
|
1250
1351
|
*/
|
|
1251
1352
|
logSettings?: LinkLogSettings | undefined;
|
|
1353
|
+
/**
|
|
1354
|
+
* <p>The timeout value in milliseconds.</p>
|
|
1355
|
+
* @public
|
|
1356
|
+
*/
|
|
1357
|
+
timeoutInMillis?: number | undefined;
|
|
1252
1358
|
}
|
|
1253
1359
|
/**
|
|
1254
1360
|
* @public
|
|
@@ -1380,10 +1486,15 @@ export interface GetInboundExternalLinkResponse {
|
|
|
1380
1486
|
*/
|
|
1381
1487
|
tags?: Record<string, string> | undefined;
|
|
1382
1488
|
/**
|
|
1383
|
-
* <p>
|
|
1489
|
+
* <p>Settings for the application logs.</p>
|
|
1384
1490
|
* @public
|
|
1385
1491
|
*/
|
|
1386
1492
|
logSettings?: LinkLogSettings | undefined;
|
|
1493
|
+
/**
|
|
1494
|
+
* <p>The connectivity type of the link.</p>
|
|
1495
|
+
* @public
|
|
1496
|
+
*/
|
|
1497
|
+
connectivityType?: ConnectivityType | undefined;
|
|
1387
1498
|
}
|
|
1388
1499
|
/**
|
|
1389
1500
|
* @public
|
|
@@ -1424,6 +1535,21 @@ export interface GetOutboundExternalLinkResponse {
|
|
|
1424
1535
|
* @public
|
|
1425
1536
|
*/
|
|
1426
1537
|
publicEndpoint: string | undefined;
|
|
1538
|
+
/**
|
|
1539
|
+
* <p>The configuration of flow modules.</p>
|
|
1540
|
+
* @public
|
|
1541
|
+
*/
|
|
1542
|
+
flowModules?: ModuleConfiguration[] | undefined;
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>The configuration of pending flow modules.</p>
|
|
1545
|
+
* @public
|
|
1546
|
+
*/
|
|
1547
|
+
pendingFlowModules?: ModuleConfiguration[] | undefined;
|
|
1548
|
+
/**
|
|
1549
|
+
* <p>Describes the attributes of a link.</p>
|
|
1550
|
+
* @public
|
|
1551
|
+
*/
|
|
1552
|
+
attributes?: LinkAttributes | undefined;
|
|
1427
1553
|
/**
|
|
1428
1554
|
* <p>The timestamp of when the outbound external link was created.</p>
|
|
1429
1555
|
* @public
|
|
@@ -1440,10 +1566,15 @@ export interface GetOutboundExternalLinkResponse {
|
|
|
1440
1566
|
*/
|
|
1441
1567
|
tags?: Record<string, string> | undefined;
|
|
1442
1568
|
/**
|
|
1443
|
-
* <p>
|
|
1569
|
+
* <p>Settings for the application logs.</p>
|
|
1444
1570
|
* @public
|
|
1445
1571
|
*/
|
|
1446
1572
|
logSettings?: LinkLogSettings | undefined;
|
|
1573
|
+
/**
|
|
1574
|
+
* <p>The connectivity type of the link.</p>
|
|
1575
|
+
* @public
|
|
1576
|
+
*/
|
|
1577
|
+
connectivityType?: ConnectivityType | undefined;
|
|
1447
1578
|
}
|
|
1448
1579
|
/**
|
|
1449
1580
|
* @public
|
|
@@ -1584,6 +1715,11 @@ export interface GetResponderGatewayResponse {
|
|
|
1584
1715
|
* @public
|
|
1585
1716
|
*/
|
|
1586
1717
|
protocol: Protocol | undefined;
|
|
1718
|
+
/**
|
|
1719
|
+
* <p>The listener configuration for the responder gateway.</p>
|
|
1720
|
+
* @public
|
|
1721
|
+
*/
|
|
1722
|
+
listenerConfig?: ListenerConfig | undefined;
|
|
1587
1723
|
/**
|
|
1588
1724
|
* <p>The configuration of the trust store.</p>
|
|
1589
1725
|
* @public
|
|
@@ -1619,6 +1755,16 @@ export interface GetResponderGatewayResponse {
|
|
|
1619
1755
|
* @public
|
|
1620
1756
|
*/
|
|
1621
1757
|
inboundLinksCount?: number | undefined;
|
|
1758
|
+
/**
|
|
1759
|
+
* <p>The type of gateway. Valid values are <code>EXTERNAL</code> or <code>INTERNAL</code>.</p>
|
|
1760
|
+
* @public
|
|
1761
|
+
*/
|
|
1762
|
+
gatewayType?: GatewayType | undefined;
|
|
1763
|
+
/**
|
|
1764
|
+
* <p>The external inbound endpoint for the responder gateway.</p>
|
|
1765
|
+
* @public
|
|
1766
|
+
*/
|
|
1767
|
+
externalInboundEndpoint?: string | undefined;
|
|
1622
1768
|
}
|
|
1623
1769
|
/**
|
|
1624
1770
|
* @public
|
|
@@ -1754,6 +1900,11 @@ export interface UpdateResponderGatewayRequest {
|
|
|
1754
1900
|
* @public
|
|
1755
1901
|
*/
|
|
1756
1902
|
protocol: Protocol | undefined;
|
|
1903
|
+
/**
|
|
1904
|
+
* <p>The listener configuration for the responder gateway.</p>
|
|
1905
|
+
* @public
|
|
1906
|
+
*/
|
|
1907
|
+
listenerConfig?: ListenerConfig | undefined;
|
|
1757
1908
|
/**
|
|
1758
1909
|
* <p>The configuration of the trust store.</p>
|
|
1759
1910
|
* @public
|
|
@@ -55,6 +55,7 @@ export declare var LinkApplicationLogConfiguration$: StaticStructureSchema;
|
|
|
55
55
|
export declare var LinkApplicationLogSampling$: StaticStructureSchema;
|
|
56
56
|
export declare var LinkAttributes$: StaticStructureSchema;
|
|
57
57
|
export declare var LinkLogSettings$: StaticStructureSchema;
|
|
58
|
+
export declare var ListenerConfig$: StaticStructureSchema;
|
|
58
59
|
export declare var ListLinksRequest$: StaticStructureSchema;
|
|
59
60
|
export declare var ListLinksResponse$: StaticStructureSchema;
|
|
60
61
|
export declare var ListLinksResponseStructure$: StaticStructureSchema;
|
|
@@ -498,6 +498,15 @@ export interface RTBFabric {
|
|
|
498
498
|
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
499
499
|
>
|
|
500
500
|
): Promise<WaiterResult>;
|
|
501
|
+
waitUntilInboundExternalLinkDeleted(
|
|
502
|
+
args: GetInboundExternalLinkCommandInput,
|
|
503
|
+
waiterConfig:
|
|
504
|
+
| number
|
|
505
|
+
| Pick<
|
|
506
|
+
WaiterConfiguration<RTBFabric>,
|
|
507
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
508
|
+
>
|
|
509
|
+
): Promise<WaiterResult>;
|
|
501
510
|
waitUntilLinkAccepted(
|
|
502
511
|
args: GetLinkCommandInput,
|
|
503
512
|
waiterConfig:
|
|
@@ -516,6 +525,15 @@ export interface RTBFabric {
|
|
|
516
525
|
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
517
526
|
>
|
|
518
527
|
): Promise<WaiterResult>;
|
|
528
|
+
waitUntilLinkDeleted(
|
|
529
|
+
args: GetLinkCommandInput,
|
|
530
|
+
waiterConfig:
|
|
531
|
+
| number
|
|
532
|
+
| Pick<
|
|
533
|
+
WaiterConfiguration<RTBFabric>,
|
|
534
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
535
|
+
>
|
|
536
|
+
): Promise<WaiterResult>;
|
|
519
537
|
waitUntilOutboundExternalLinkActive(
|
|
520
538
|
args: GetOutboundExternalLinkCommandInput,
|
|
521
539
|
waiterConfig:
|
|
@@ -525,6 +543,15 @@ export interface RTBFabric {
|
|
|
525
543
|
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
526
544
|
>
|
|
527
545
|
): Promise<WaiterResult>;
|
|
546
|
+
waitUntilOutboundExternalLinkDeleted(
|
|
547
|
+
args: GetOutboundExternalLinkCommandInput,
|
|
548
|
+
waiterConfig:
|
|
549
|
+
| number
|
|
550
|
+
| Pick<
|
|
551
|
+
WaiterConfiguration<RTBFabric>,
|
|
552
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
553
|
+
>
|
|
554
|
+
): Promise<WaiterResult>;
|
|
528
555
|
waitUntilRequesterGatewayActive(
|
|
529
556
|
args: GetRequesterGatewayCommandInput,
|
|
530
557
|
waiterConfig:
|
|
@@ -11,6 +11,14 @@ export declare const ResponderErrorMaskingLoggingType: {
|
|
|
11
11
|
};
|
|
12
12
|
export type ResponderErrorMaskingLoggingType =
|
|
13
13
|
(typeof ResponderErrorMaskingLoggingType)[keyof typeof ResponderErrorMaskingLoggingType];
|
|
14
|
+
export declare const ConnectivityType: {
|
|
15
|
+
readonly DEFAULT: "DEFAULT";
|
|
16
|
+
readonly EXTERNAL_INBOUND: "EXTERNAL_INBOUND";
|
|
17
|
+
readonly PUBLIC_EGRESS: "PUBLIC_EGRESS";
|
|
18
|
+
readonly PUBLIC_INGRESS: "PUBLIC_INGRESS";
|
|
19
|
+
};
|
|
20
|
+
export type ConnectivityType =
|
|
21
|
+
(typeof ConnectivityType)[keyof typeof ConnectivityType];
|
|
14
22
|
export declare const LinkDirection: {
|
|
15
23
|
readonly REQUEST: "REQUEST";
|
|
16
24
|
readonly RESPONSE: "RESPONSE";
|
|
@@ -50,6 +58,11 @@ export declare const RequesterGatewayStatus: {
|
|
|
50
58
|
};
|
|
51
59
|
export type RequesterGatewayStatus =
|
|
52
60
|
(typeof RequesterGatewayStatus)[keyof typeof RequesterGatewayStatus];
|
|
61
|
+
export declare const GatewayType: {
|
|
62
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
63
|
+
readonly INTERNAL: "INTERNAL";
|
|
64
|
+
};
|
|
65
|
+
export type GatewayType = (typeof GatewayType)[keyof typeof GatewayType];
|
|
53
66
|
export declare const Protocol: {
|
|
54
67
|
readonly HTTP: "HTTP";
|
|
55
68
|
readonly HTTPS: "HTTPS";
|