@aws-sdk/client-rtbfabric 3.928.0 → 3.929.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 +1115 -1418
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/RTBFabricClient.js +2 -0
- package/dist-es/commands/AcceptLinkCommand.js +3 -9
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/CreateLinkCommand.js +3 -9
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/CreateRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/CreateResponderGatewayCommand.js +3 -10
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/DeleteLinkCommand.js +3 -9
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/DeleteResponderGatewayCommand.js +3 -9
- package/dist-es/commands/GetInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/GetLinkCommand.js +3 -9
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/GetRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/GetResponderGatewayCommand.js +3 -10
- package/dist-es/commands/ListLinksCommand.js +3 -9
- package/dist-es/commands/ListRequesterGatewaysCommand.js +3 -9
- package/dist-es/commands/ListResponderGatewaysCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RejectLinkCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateLinkCommand.js +3 -9
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +3 -9
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/UpdateResponderGatewayCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -44
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1051 -0
- package/dist-types/RTBFabricClient.d.ts +10 -1
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +17 -1
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +29 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +8 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +25 -24
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +127 -0
- package/dist-types/ts3.4/RTBFabricClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1163
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -245
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -329
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand";
|
|
11
11
|
import { CreateInboundExternalLinkCommandInput, CreateInboundExternalLinkCommandOutput } from "./commands/CreateInboundExternalLinkCommand";
|
|
@@ -168,6 +168,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
168
168
|
* Optional extensions
|
|
169
169
|
*/
|
|
170
170
|
extensions?: RuntimeExtension[];
|
|
171
|
+
/**
|
|
172
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
173
|
+
* may be overridden. A default will always be set by the client.
|
|
174
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
175
|
+
* the client.
|
|
176
|
+
* @alpha
|
|
177
|
+
*
|
|
178
|
+
*/
|
|
179
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
171
180
|
/**
|
|
172
181
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
173
182
|
*/
|
|
@@ -52,6 +52,14 @@ declare const CreateInboundExternalLinkCommand_base: {
|
|
|
52
52
|
* ],
|
|
53
53
|
* customerProvidedId: "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
|
+
* logSettings: { // LinkLogSettings
|
|
56
|
+
* applicationLogs: { // LinkApplicationLogConfiguration
|
|
57
|
+
* sampling: { // LinkApplicationLogSampling
|
|
58
|
+
* errorLog: Number("double"), // required
|
|
59
|
+
* filterLog: Number("double"), // required
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
55
63
|
* tags: { // TagsMap
|
|
56
64
|
* "<keys>": "STRING_VALUE",
|
|
57
65
|
* },
|
|
@@ -103,7 +111,15 @@ declare const CreateInboundExternalLinkCommand_base: {
|
|
|
103
111
|
* // Create an inbound external link for a responder gateway
|
|
104
112
|
* const input = {
|
|
105
113
|
* clientToken: "randomClientToken",
|
|
106
|
-
* gatewayId: "rtb-gw-12345678"
|
|
114
|
+
* gatewayId: "rtb-gw-12345678",
|
|
115
|
+
* logSettings: {
|
|
116
|
+
* applicationLogs: {
|
|
117
|
+
* sampling: {
|
|
118
|
+
* errorLog: 100.0,
|
|
119
|
+
* filterLog: 0.0
|
|
120
|
+
* }
|
|
121
|
+
* }
|
|
122
|
+
* }
|
|
107
123
|
* };
|
|
108
124
|
* const command = new CreateInboundExternalLinkCommand(input);
|
|
109
125
|
* const response = await client.send(command);
|
|
@@ -39,7 +39,28 @@ declare const CreateOutboundExternalLinkCommand_base: {
|
|
|
39
39
|
* const input = { // CreateOutboundExternalLinkRequest
|
|
40
40
|
* clientToken: "STRING_VALUE", // required
|
|
41
41
|
* gatewayId: "STRING_VALUE", // required
|
|
42
|
+
* attributes: { // LinkAttributes
|
|
43
|
+
* responderErrorMasking: [ // ResponderErrorMasking
|
|
44
|
+
* { // ResponderErrorMaskingForHttpCode
|
|
45
|
+
* httpCode: "STRING_VALUE", // required
|
|
46
|
+
* action: "NO_BID" || "PASSTHROUGH", // required
|
|
47
|
+
* loggingTypes: [ // ResponderErrorMaskingLoggingTypes // required
|
|
48
|
+
* "NONE" || "METRIC" || "RESPONSE",
|
|
49
|
+
* ],
|
|
50
|
+
* responseLoggingPercentage: Number("float"),
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* customerProvidedId: "STRING_VALUE",
|
|
54
|
+
* },
|
|
42
55
|
* publicEndpoint: "STRING_VALUE", // required
|
|
56
|
+
* logSettings: { // LinkLogSettings
|
|
57
|
+
* applicationLogs: { // LinkApplicationLogConfiguration
|
|
58
|
+
* sampling: { // LinkApplicationLogSampling
|
|
59
|
+
* errorLog: Number("double"), // required
|
|
60
|
+
* filterLog: Number("double"), // required
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* },
|
|
43
64
|
* tags: { // TagsMap
|
|
44
65
|
* "<keys>": "STRING_VALUE",
|
|
45
66
|
* },
|
|
@@ -88,6 +109,14 @@ declare const CreateOutboundExternalLinkCommand_base: {
|
|
|
88
109
|
* const input = {
|
|
89
110
|
* clientToken: "12345678-1234-1234-1234-123456789012",
|
|
90
111
|
* gatewayId: "rtb-gw-12345678",
|
|
112
|
+
* logSettings: {
|
|
113
|
+
* applicationLogs: {
|
|
114
|
+
* sampling: {
|
|
115
|
+
* errorLog: 100.0,
|
|
116
|
+
* filterLog: 0.0
|
|
117
|
+
* }
|
|
118
|
+
* }
|
|
119
|
+
* },
|
|
91
120
|
* publicEndpoint: "https://external-responder.example.com"
|
|
92
121
|
* };
|
|
93
122
|
* const command = new CreateOutboundExternalLinkCommand(input);
|
|
@@ -153,6 +153,14 @@ declare const GetInboundExternalLinkCommand_base: {
|
|
|
153
153
|
* // tags: { // TagsMap
|
|
154
154
|
* // "<keys>": "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
|
+
* // },
|
|
156
164
|
* // };
|
|
157
165
|
*
|
|
158
166
|
* ```
|
|
@@ -52,6 +52,14 @@ declare const GetOutboundExternalLinkCommand_base: {
|
|
|
52
52
|
* // tags: { // TagsMap
|
|
53
53
|
* // "<keys>": "STRING_VALUE",
|
|
54
54
|
* // },
|
|
55
|
+
* // logSettings: { // LinkLogSettings
|
|
56
|
+
* // applicationLogs: { // LinkApplicationLogConfiguration
|
|
57
|
+
* // sampling: { // LinkApplicationLogSampling
|
|
58
|
+
* // errorLog: Number("double"), // required
|
|
59
|
+
* // filterLog: Number("double"), // required
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
55
63
|
* // };
|
|
56
64
|
*
|
|
57
65
|
* ```
|
|
@@ -577,6 +577,11 @@ export interface CreateInboundExternalLinkRequest {
|
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
579
|
attributes?: LinkAttributes | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* <p>Describes the settings for a link log.</p>
|
|
582
|
+
* @public
|
|
583
|
+
*/
|
|
584
|
+
logSettings: LinkLogSettings | undefined;
|
|
580
585
|
/**
|
|
581
586
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
582
587
|
* @public
|
|
@@ -729,11 +734,21 @@ export interface CreateOutboundExternalLinkRequest {
|
|
|
729
734
|
* @public
|
|
730
735
|
*/
|
|
731
736
|
gatewayId: string | undefined;
|
|
737
|
+
/**
|
|
738
|
+
* <p>Describes the attributes of a link.</p>
|
|
739
|
+
* @public
|
|
740
|
+
*/
|
|
741
|
+
attributes?: LinkAttributes | undefined;
|
|
732
742
|
/**
|
|
733
743
|
* <p>The public endpoint of the link.</p>
|
|
734
744
|
* @public
|
|
735
745
|
*/
|
|
736
746
|
publicEndpoint: string | undefined;
|
|
747
|
+
/**
|
|
748
|
+
* <p>Describes the settings for a link log.</p>
|
|
749
|
+
* @public
|
|
750
|
+
*/
|
|
751
|
+
logSettings: LinkLogSettings | undefined;
|
|
737
752
|
/**
|
|
738
753
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
739
754
|
* @public
|
|
@@ -1564,6 +1579,11 @@ export interface GetInboundExternalLinkResponse {
|
|
|
1564
1579
|
* @public
|
|
1565
1580
|
*/
|
|
1566
1581
|
tags?: Record<string, string> | undefined;
|
|
1582
|
+
/**
|
|
1583
|
+
* <p>Describes the settings for a link log.</p>
|
|
1584
|
+
* @public
|
|
1585
|
+
*/
|
|
1586
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1567
1587
|
}
|
|
1568
1588
|
/**
|
|
1569
1589
|
* @public
|
|
@@ -1619,6 +1639,11 @@ export interface GetOutboundExternalLinkResponse {
|
|
|
1619
1639
|
* @public
|
|
1620
1640
|
*/
|
|
1621
1641
|
tags?: Record<string, string> | undefined;
|
|
1642
|
+
/**
|
|
1643
|
+
* <p>Describes the settings for a link log.</p>
|
|
1644
|
+
* @public
|
|
1645
|
+
*/
|
|
1646
|
+
logSettings?: LinkLogSettings | undefined;
|
|
1622
1647
|
}
|
|
1623
1648
|
/**
|
|
1624
1649
|
* @public
|
|
@@ -2010,27 +2035,3 @@ export interface UntagResourceRequest {
|
|
|
2010
2035
|
*/
|
|
2011
2036
|
export interface UntagResourceResponse {
|
|
2012
2037
|
}
|
|
2013
|
-
/**
|
|
2014
|
-
* @internal
|
|
2015
|
-
*/
|
|
2016
|
-
export declare const EksEndpointsConfigurationFilterSensitiveLog: (obj: EksEndpointsConfiguration) => any;
|
|
2017
|
-
/**
|
|
2018
|
-
* @internal
|
|
2019
|
-
*/
|
|
2020
|
-
export declare const ManagedEndpointConfigurationFilterSensitiveLog: (obj: ManagedEndpointConfiguration) => any;
|
|
2021
|
-
/**
|
|
2022
|
-
* @internal
|
|
2023
|
-
*/
|
|
2024
|
-
export declare const TrustStoreConfigurationFilterSensitiveLog: (obj: TrustStoreConfiguration) => any;
|
|
2025
|
-
/**
|
|
2026
|
-
* @internal
|
|
2027
|
-
*/
|
|
2028
|
-
export declare const CreateResponderGatewayRequestFilterSensitiveLog: (obj: CreateResponderGatewayRequest) => any;
|
|
2029
|
-
/**
|
|
2030
|
-
* @internal
|
|
2031
|
-
*/
|
|
2032
|
-
export declare const GetResponderGatewayResponseFilterSensitiveLog: (obj: GetResponderGatewayResponse) => any;
|
|
2033
|
-
/**
|
|
2034
|
-
* @internal
|
|
2035
|
-
*/
|
|
2036
|
-
export declare const UpdateResponderGatewayRequestFilterSensitiveLog: (obj: UpdateResponderGatewayRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -8,16 +8,13 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger
|
|
12
|
-
/**
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
?: import("@smithy/types").Logger;
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
16
12
|
}) => import("@smithy/types").EndpointV2;
|
|
17
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
18
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
19
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
20
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
21
18
|
serviceId: string;
|
|
22
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Base64EncodedCertificateChain: StaticSimpleSchema;
|
|
3
|
+
export declare var AcceptLinkRequest: StaticStructureSchema;
|
|
4
|
+
export declare var AcceptLinkResponse: StaticStructureSchema;
|
|
5
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
6
|
+
export declare var AutoScalingGroupsConfiguration: StaticStructureSchema;
|
|
7
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
8
|
+
export declare var CreateInboundExternalLinkRequest: StaticStructureSchema;
|
|
9
|
+
export declare var CreateInboundExternalLinkResponse: StaticStructureSchema;
|
|
10
|
+
export declare var CreateLinkRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateLinkResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CreateOutboundExternalLinkRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateOutboundExternalLinkResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateRequesterGatewayRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateRequesterGatewayResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateResponderGatewayRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateResponderGatewayResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteInboundExternalLinkRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteInboundExternalLinkResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteLinkRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteLinkResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteOutboundExternalLinkRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteOutboundExternalLinkResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteRequesterGatewayRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteRequesterGatewayResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteResponderGatewayRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteResponderGatewayResponse: StaticStructureSchema;
|
|
28
|
+
export declare var EksEndpointsConfiguration: StaticStructureSchema;
|
|
29
|
+
export declare var Filter: StaticStructureSchema;
|
|
30
|
+
export declare var FilterCriterion: StaticStructureSchema;
|
|
31
|
+
export declare var GetInboundExternalLinkRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetInboundExternalLinkResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetLinkRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetLinkResponse: StaticStructureSchema;
|
|
35
|
+
export declare var GetOutboundExternalLinkRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetOutboundExternalLinkResponse: StaticStructureSchema;
|
|
37
|
+
export declare var GetRequesterGatewayRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetRequesterGatewayResponse: StaticStructureSchema;
|
|
39
|
+
export declare var GetResponderGatewayRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetResponderGatewayResponse: StaticStructureSchema;
|
|
41
|
+
export declare var HeaderTagAction: StaticStructureSchema;
|
|
42
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
43
|
+
export declare var LinkApplicationLogConfiguration: StaticStructureSchema;
|
|
44
|
+
export declare var LinkApplicationLogSampling: StaticStructureSchema;
|
|
45
|
+
export declare var LinkAttributes: StaticStructureSchema;
|
|
46
|
+
export declare var LinkLogSettings: StaticStructureSchema;
|
|
47
|
+
export declare var ListLinksRequest: StaticStructureSchema;
|
|
48
|
+
export declare var ListLinksResponse: StaticStructureSchema;
|
|
49
|
+
export declare var ListLinksResponseStructure: StaticStructureSchema;
|
|
50
|
+
export declare var ListRequesterGatewaysRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListRequesterGatewaysResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListResponderGatewaysRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListResponderGatewaysResponse: StaticStructureSchema;
|
|
54
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ModuleConfiguration: StaticStructureSchema;
|
|
57
|
+
export declare var NoBidAction: StaticStructureSchema;
|
|
58
|
+
export declare var NoBidModuleParameters: StaticStructureSchema;
|
|
59
|
+
export declare var OpenRtbAttributeModuleParameters: StaticStructureSchema;
|
|
60
|
+
export declare var RateLimiterModuleParameters: StaticStructureSchema;
|
|
61
|
+
export declare var RejectLinkRequest: StaticStructureSchema;
|
|
62
|
+
export declare var RejectLinkResponse: StaticStructureSchema;
|
|
63
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
64
|
+
export declare var ResponderErrorMaskingForHttpCode: StaticStructureSchema;
|
|
65
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
66
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
67
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
68
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
69
|
+
export declare var TrustStoreConfiguration: StaticStructureSchema;
|
|
70
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
71
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
72
|
+
export declare var UpdateLinkModuleFlowRequest: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateLinkModuleFlowResponse: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateLinkRequest: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateLinkResponse: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateRequesterGatewayRequest: StaticStructureSchema;
|
|
77
|
+
export declare var UpdateRequesterGatewayResponse: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateResponderGatewayRequest: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateResponderGatewayResponse: StaticStructureSchema;
|
|
80
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
81
|
+
export declare var __Unit: "unit";
|
|
82
|
+
export declare var RTBFabricServiceException: StaticErrorSchema;
|
|
83
|
+
export declare var AutoScalingGroupNameList: number;
|
|
84
|
+
export declare var CertificateAuthorityCertificates: StaticListSchema;
|
|
85
|
+
export declare var FilterConfiguration: StaticListSchema;
|
|
86
|
+
export declare var FilterCriteria: StaticListSchema;
|
|
87
|
+
export declare var FlowModuleNameList: number;
|
|
88
|
+
export declare var GatewayIdList: number;
|
|
89
|
+
export declare var LinkList: StaticListSchema;
|
|
90
|
+
export declare var ModuleConfigurationList: StaticListSchema;
|
|
91
|
+
export declare var ResponderErrorMasking: StaticListSchema;
|
|
92
|
+
export declare var ResponderErrorMaskingLoggingTypes: number;
|
|
93
|
+
export declare var SecurityGroupIdList: number;
|
|
94
|
+
export declare var SubnetIdList: number;
|
|
95
|
+
export declare var TagKeyList: number;
|
|
96
|
+
export declare var ValueList: number;
|
|
97
|
+
export declare var TagsMap: number;
|
|
98
|
+
export declare var Action: StaticStructureSchema;
|
|
99
|
+
export declare var ManagedEndpointConfiguration: StaticStructureSchema;
|
|
100
|
+
export declare var ModuleParameters: StaticStructureSchema;
|
|
101
|
+
export declare var AcceptLink: StaticOperationSchema;
|
|
102
|
+
export declare var CreateInboundExternalLink: StaticOperationSchema;
|
|
103
|
+
export declare var CreateLink: StaticOperationSchema;
|
|
104
|
+
export declare var CreateOutboundExternalLink: StaticOperationSchema;
|
|
105
|
+
export declare var CreateRequesterGateway: StaticOperationSchema;
|
|
106
|
+
export declare var CreateResponderGateway: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteInboundExternalLink: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteLink: StaticOperationSchema;
|
|
109
|
+
export declare var DeleteOutboundExternalLink: StaticOperationSchema;
|
|
110
|
+
export declare var DeleteRequesterGateway: StaticOperationSchema;
|
|
111
|
+
export declare var DeleteResponderGateway: StaticOperationSchema;
|
|
112
|
+
export declare var GetInboundExternalLink: StaticOperationSchema;
|
|
113
|
+
export declare var GetLink: StaticOperationSchema;
|
|
114
|
+
export declare var GetOutboundExternalLink: StaticOperationSchema;
|
|
115
|
+
export declare var GetRequesterGateway: StaticOperationSchema;
|
|
116
|
+
export declare var GetResponderGateway: StaticOperationSchema;
|
|
117
|
+
export declare var ListLinks: StaticOperationSchema;
|
|
118
|
+
export declare var ListRequesterGateways: StaticOperationSchema;
|
|
119
|
+
export declare var ListResponderGateways: StaticOperationSchema;
|
|
120
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
121
|
+
export declare var RejectLink: StaticOperationSchema;
|
|
122
|
+
export declare var TagResource: StaticOperationSchema;
|
|
123
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
124
|
+
export declare var UpdateLink: StaticOperationSchema;
|
|
125
|
+
export declare var UpdateLinkModuleFlow: StaticOperationSchema;
|
|
126
|
+
export declare var UpdateRequesterGateway: StaticOperationSchema;
|
|
127
|
+
export declare var UpdateResponderGateway: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -240,6 +243,7 @@ export interface ClientDefaults
|
|
|
240
243
|
retryMode?: string | __Provider<string>;
|
|
241
244
|
logger?: __Logger;
|
|
242
245
|
extensions?: RuntimeExtension[];
|
|
246
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
243
247
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
244
248
|
}
|
|
245
249
|
export type RTBFabricClientConfigType = Partial<
|
|
@@ -226,6 +226,7 @@ export interface CreateInboundExternalLinkRequest {
|
|
|
226
226
|
clientToken?: string | undefined;
|
|
227
227
|
gatewayId: string | undefined;
|
|
228
228
|
attributes?: LinkAttributes | undefined;
|
|
229
|
+
logSettings: LinkLogSettings | undefined;
|
|
229
230
|
tags?: Record<string, string> | undefined;
|
|
230
231
|
}
|
|
231
232
|
export interface CreateInboundExternalLinkResponse {
|
|
@@ -265,7 +266,9 @@ export interface CreateLinkResponse {
|
|
|
265
266
|
export interface CreateOutboundExternalLinkRequest {
|
|
266
267
|
clientToken?: string | undefined;
|
|
267
268
|
gatewayId: string | undefined;
|
|
269
|
+
attributes?: LinkAttributes | undefined;
|
|
268
270
|
publicEndpoint: string | undefined;
|
|
271
|
+
logSettings: LinkLogSettings | undefined;
|
|
269
272
|
tags?: Record<string, string> | undefined;
|
|
270
273
|
}
|
|
271
274
|
export interface CreateOutboundExternalLinkResponse {
|
|
@@ -504,6 +507,7 @@ export interface GetInboundExternalLinkResponse {
|
|
|
504
507
|
createdAt?: Date | undefined;
|
|
505
508
|
updatedAt?: Date | undefined;
|
|
506
509
|
tags?: Record<string, string> | undefined;
|
|
510
|
+
logSettings?: LinkLogSettings | undefined;
|
|
507
511
|
}
|
|
508
512
|
export interface GetOutboundExternalLinkRequest {
|
|
509
513
|
gatewayId: string | undefined;
|
|
@@ -517,6 +521,7 @@ export interface GetOutboundExternalLinkResponse {
|
|
|
517
521
|
createdAt?: Date | undefined;
|
|
518
522
|
updatedAt?: Date | undefined;
|
|
519
523
|
tags?: Record<string, string> | undefined;
|
|
524
|
+
logSettings?: LinkLogSettings | undefined;
|
|
520
525
|
}
|
|
521
526
|
export interface GetRequesterGatewayRequest {
|
|
522
527
|
gatewayId: string | undefined;
|
|
@@ -612,21 +617,3 @@ export interface UntagResourceRequest {
|
|
|
612
617
|
tagKeys: string[] | undefined;
|
|
613
618
|
}
|
|
614
619
|
export interface UntagResourceResponse {}
|
|
615
|
-
export declare const EksEndpointsConfigurationFilterSensitiveLog: (
|
|
616
|
-
obj: EksEndpointsConfiguration
|
|
617
|
-
) => any;
|
|
618
|
-
export declare const ManagedEndpointConfigurationFilterSensitiveLog: (
|
|
619
|
-
obj: ManagedEndpointConfiguration
|
|
620
|
-
) => any;
|
|
621
|
-
export declare const TrustStoreConfigurationFilterSensitiveLog: (
|
|
622
|
-
obj: TrustStoreConfiguration
|
|
623
|
-
) => any;
|
|
624
|
-
export declare const CreateResponderGatewayRequestFilterSensitiveLog: (
|
|
625
|
-
obj: CreateResponderGatewayRequest
|
|
626
|
-
) => any;
|
|
627
|
-
export declare const GetResponderGatewayResponseFilterSensitiveLog: (
|
|
628
|
-
obj: GetResponderGatewayResponse
|
|
629
|
-
) => any;
|
|
630
|
-
export declare const UpdateResponderGatewayRequestFilterSensitiveLog: (
|
|
631
|
-
obj: UpdateResponderGatewayRequest
|
|
632
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var Base64EncodedCertificateChain: StaticSimpleSchema;
|
|
9
|
+
export declare var AcceptLinkRequest: StaticStructureSchema;
|
|
10
|
+
export declare var AcceptLinkResponse: StaticStructureSchema;
|
|
11
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
12
|
+
export declare var AutoScalingGroupsConfiguration: StaticStructureSchema;
|
|
13
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var CreateInboundExternalLinkRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateInboundExternalLinkResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateLinkRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateLinkResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateOutboundExternalLinkRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateOutboundExternalLinkResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateRequesterGatewayRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateRequesterGatewayResponse: StaticStructureSchema;
|
|
22
|
+
export declare var CreateResponderGatewayRequest: StaticStructureSchema;
|
|
23
|
+
export declare var CreateResponderGatewayResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteInboundExternalLinkRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteInboundExternalLinkResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteLinkRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteLinkResponse: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteOutboundExternalLinkRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteOutboundExternalLinkResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteRequesterGatewayRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteRequesterGatewayResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteResponderGatewayRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteResponderGatewayResponse: StaticStructureSchema;
|
|
34
|
+
export declare var EksEndpointsConfiguration: StaticStructureSchema;
|
|
35
|
+
export declare var Filter: StaticStructureSchema;
|
|
36
|
+
export declare var FilterCriterion: StaticStructureSchema;
|
|
37
|
+
export declare var GetInboundExternalLinkRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetInboundExternalLinkResponse: StaticStructureSchema;
|
|
39
|
+
export declare var GetLinkRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetLinkResponse: StaticStructureSchema;
|
|
41
|
+
export declare var GetOutboundExternalLinkRequest: StaticStructureSchema;
|
|
42
|
+
export declare var GetOutboundExternalLinkResponse: StaticStructureSchema;
|
|
43
|
+
export declare var GetRequesterGatewayRequest: StaticStructureSchema;
|
|
44
|
+
export declare var GetRequesterGatewayResponse: StaticStructureSchema;
|
|
45
|
+
export declare var GetResponderGatewayRequest: StaticStructureSchema;
|
|
46
|
+
export declare var GetResponderGatewayResponse: StaticStructureSchema;
|
|
47
|
+
export declare var HeaderTagAction: StaticStructureSchema;
|
|
48
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
49
|
+
export declare var LinkApplicationLogConfiguration: StaticStructureSchema;
|
|
50
|
+
export declare var LinkApplicationLogSampling: StaticStructureSchema;
|
|
51
|
+
export declare var LinkAttributes: StaticStructureSchema;
|
|
52
|
+
export declare var LinkLogSettings: StaticStructureSchema;
|
|
53
|
+
export declare var ListLinksRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListLinksResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListLinksResponseStructure: StaticStructureSchema;
|
|
56
|
+
export declare var ListRequesterGatewaysRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListRequesterGatewaysResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ListResponderGatewaysRequest: StaticStructureSchema;
|
|
59
|
+
export declare var ListResponderGatewaysResponse: StaticStructureSchema;
|
|
60
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
61
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ModuleConfiguration: StaticStructureSchema;
|
|
63
|
+
export declare var NoBidAction: StaticStructureSchema;
|
|
64
|
+
export declare var NoBidModuleParameters: StaticStructureSchema;
|
|
65
|
+
export declare var OpenRtbAttributeModuleParameters: StaticStructureSchema;
|
|
66
|
+
export declare var RateLimiterModuleParameters: StaticStructureSchema;
|
|
67
|
+
export declare var RejectLinkRequest: StaticStructureSchema;
|
|
68
|
+
export declare var RejectLinkResponse: StaticStructureSchema;
|
|
69
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
70
|
+
export declare var ResponderErrorMaskingForHttpCode: StaticStructureSchema;
|
|
71
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
72
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
73
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
74
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
75
|
+
export declare var TrustStoreConfiguration: StaticStructureSchema;
|
|
76
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
77
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateLinkModuleFlowRequest: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateLinkModuleFlowResponse: StaticStructureSchema;
|
|
80
|
+
export declare var UpdateLinkRequest: StaticStructureSchema;
|
|
81
|
+
export declare var UpdateLinkResponse: StaticStructureSchema;
|
|
82
|
+
export declare var UpdateRequesterGatewayRequest: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateRequesterGatewayResponse: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateResponderGatewayRequest: StaticStructureSchema;
|
|
85
|
+
export declare var UpdateResponderGatewayResponse: StaticStructureSchema;
|
|
86
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
87
|
+
export declare var __Unit: "unit";
|
|
88
|
+
export declare var RTBFabricServiceException: StaticErrorSchema;
|
|
89
|
+
export declare var AutoScalingGroupNameList: number;
|
|
90
|
+
export declare var CertificateAuthorityCertificates: StaticListSchema;
|
|
91
|
+
export declare var FilterConfiguration: StaticListSchema;
|
|
92
|
+
export declare var FilterCriteria: StaticListSchema;
|
|
93
|
+
export declare var FlowModuleNameList: number;
|
|
94
|
+
export declare var GatewayIdList: number;
|
|
95
|
+
export declare var LinkList: StaticListSchema;
|
|
96
|
+
export declare var ModuleConfigurationList: StaticListSchema;
|
|
97
|
+
export declare var ResponderErrorMasking: StaticListSchema;
|
|
98
|
+
export declare var ResponderErrorMaskingLoggingTypes: number;
|
|
99
|
+
export declare var SecurityGroupIdList: number;
|
|
100
|
+
export declare var SubnetIdList: number;
|
|
101
|
+
export declare var TagKeyList: number;
|
|
102
|
+
export declare var ValueList: number;
|
|
103
|
+
export declare var TagsMap: number;
|
|
104
|
+
export declare var Action: StaticStructureSchema;
|
|
105
|
+
export declare var ManagedEndpointConfiguration: StaticStructureSchema;
|
|
106
|
+
export declare var ModuleParameters: StaticStructureSchema;
|
|
107
|
+
export declare var AcceptLink: StaticOperationSchema;
|
|
108
|
+
export declare var CreateInboundExternalLink: StaticOperationSchema;
|
|
109
|
+
export declare var CreateLink: StaticOperationSchema;
|
|
110
|
+
export declare var CreateOutboundExternalLink: StaticOperationSchema;
|
|
111
|
+
export declare var CreateRequesterGateway: StaticOperationSchema;
|
|
112
|
+
export declare var CreateResponderGateway: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteInboundExternalLink: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteLink: StaticOperationSchema;
|
|
115
|
+
export declare var DeleteOutboundExternalLink: StaticOperationSchema;
|
|
116
|
+
export declare var DeleteRequesterGateway: StaticOperationSchema;
|
|
117
|
+
export declare var DeleteResponderGateway: StaticOperationSchema;
|
|
118
|
+
export declare var GetInboundExternalLink: StaticOperationSchema;
|
|
119
|
+
export declare var GetLink: StaticOperationSchema;
|
|
120
|
+
export declare var GetOutboundExternalLink: StaticOperationSchema;
|
|
121
|
+
export declare var GetRequesterGateway: StaticOperationSchema;
|
|
122
|
+
export declare var GetResponderGateway: StaticOperationSchema;
|
|
123
|
+
export declare var ListLinks: StaticOperationSchema;
|
|
124
|
+
export declare var ListRequesterGateways: StaticOperationSchema;
|
|
125
|
+
export declare var ListResponderGateways: StaticOperationSchema;
|
|
126
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
127
|
+
export declare var RejectLink: StaticOperationSchema;
|
|
128
|
+
export declare var TagResource: StaticOperationSchema;
|
|
129
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
130
|
+
export declare var UpdateLink: StaticOperationSchema;
|
|
131
|
+
export declare var UpdateLinkModuleFlow: StaticOperationSchema;
|
|
132
|
+
export declare var UpdateRequesterGateway: StaticOperationSchema;
|
|
133
|
+
export declare var UpdateResponderGateway: StaticOperationSchema;
|