@aws-sdk/client-pipes 3.222.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/LICENSE +201 -0
- package/README.md +207 -0
- package/dist-cjs/Pipes.js +157 -0
- package/dist-cjs/PipesClient.js +40 -0
- package/dist-cjs/commands/CreatePipeCommand.js +46 -0
- package/dist-cjs/commands/DeletePipeCommand.js +46 -0
- package/dist-cjs/commands/DescribePipeCommand.js +46 -0
- package/dist-cjs/commands/ListPipesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/StartPipeCommand.js +46 -0
- package/dist-cjs/commands/StopPipeCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdatePipeCommand.js +46 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/PipesServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +704 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListPipesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2591 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/Pipes.js +153 -0
- package/dist-es/PipesClient.js +36 -0
- package/dist-es/commands/CreatePipeCommand.js +42 -0
- package/dist-es/commands/DeletePipeCommand.js +42 -0
- package/dist-es/commands/DescribePipeCommand.js +42 -0
- package/dist-es/commands/ListPipesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/StartPipeCommand.js +42 -0
- package/dist-es/commands/StopPipeCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdatePipeCommand.js +42 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/PipesServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +614 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListPipesPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2568 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/Pipes.d.ts +95 -0
- package/dist-types/PipesClient.d.ts +153 -0
- package/dist-types/commands/CreatePipeCommand.d.ts +37 -0
- package/dist-types/commands/DeletePipeCommand.d.ts +37 -0
- package/dist-types/commands/DescribePipeCommand.d.ts +37 -0
- package/dist-types/commands/ListPipesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/StartPipeCommand.d.ts +37 -0
- package/dist-types/commands/StopPipeCommand.d.ts +37 -0
- package/dist-types/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdatePipeCommand.d.ts +43 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/PipesServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2541 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListPipesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +32 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/Pipes.d.ts +174 -0
- package/dist-types/ts3.4/PipesClient.d.ts +171 -0
- package/dist-types/ts3.4/commands/CreatePipeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeletePipeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DescribePipeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListPipesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartPipeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StopPipeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdatePipeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/PipesServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +915 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListPipesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +102 -0
|
@@ -0,0 +1,2541 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { PipesServiceException as __BaseException } from "./PipesServiceException";
|
|
3
|
+
export declare enum AssignPublicIp {
|
|
4
|
+
DISABLED = "DISABLED",
|
|
5
|
+
ENABLED = "ENABLED"
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* <p>This structure specifies the VPC subnets and security groups for the task, and whether a public IP address is to be used.
|
|
9
|
+
* This structure is relevant only for ECS tasks that use the <code>awsvpc</code> network mode.</p>
|
|
10
|
+
*/
|
|
11
|
+
export interface AwsVpcConfiguration {
|
|
12
|
+
/**
|
|
13
|
+
* <p>Specifies the subnets associated with the task. These subnets must all be in the same VPC. You can specify as many as 16 subnets.</p>
|
|
14
|
+
*/
|
|
15
|
+
Subnets: string[] | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>Specifies the security groups associated with the task. These security groups must all be in the same VPC. You can specify as many
|
|
18
|
+
* as five security groups. If you do not specify a security group, the default security group for the VPC is used.</p>
|
|
19
|
+
*/
|
|
20
|
+
SecurityGroups?: string[];
|
|
21
|
+
/**
|
|
22
|
+
* <p>Specifies whether the task's elastic network interface receives a public IP address. You can specify <code>ENABLED</code> only when
|
|
23
|
+
* <code>LaunchType</code> in <code>EcsParameters</code> is set to <code>FARGATE</code>.</p>
|
|
24
|
+
*/
|
|
25
|
+
AssignPublicIp?: AssignPublicIp | string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000.
|
|
29
|
+
* If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an Batch job.</p>
|
|
30
|
+
*/
|
|
31
|
+
export interface BatchArrayProperties {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The size of the array, if this is an array batch job.</p>
|
|
34
|
+
*/
|
|
35
|
+
Size?: number;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* <p>The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing
|
|
39
|
+
* environment variables from the Docker image or the task definition.</p>
|
|
40
|
+
* <note>
|
|
41
|
+
* <p>Environment variables cannot start with "<code>Batch</code>". This naming convention is reserved for variables that Batch sets.</p>
|
|
42
|
+
* </note>
|
|
43
|
+
*/
|
|
44
|
+
export interface BatchEnvironmentVariable {
|
|
45
|
+
/**
|
|
46
|
+
* <p>The name of the key-value pair. For environment variables, this is the name of the environment variable.</p>
|
|
47
|
+
*/
|
|
48
|
+
Name?: string;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The value of the key-value pair. For environment variables, this is the value of the environment variable.</p>
|
|
51
|
+
*/
|
|
52
|
+
Value?: string;
|
|
53
|
+
}
|
|
54
|
+
export declare enum BatchResourceRequirementType {
|
|
55
|
+
GPU = "GPU",
|
|
56
|
+
MEMORY = "MEMORY",
|
|
57
|
+
VCPU = "VCPU"
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>The type and amount of a resource to assign to a container. The supported resources include <code>GPU</code>, <code>MEMORY</code>, and <code>VCPU</code>.</p>
|
|
61
|
+
*/
|
|
62
|
+
export interface BatchResourceRequirement {
|
|
63
|
+
/**
|
|
64
|
+
* <p>The type of resource to assign to a container. The supported resources include <code>GPU</code>, <code>MEMORY</code>, and <code>VCPU</code>.</p>
|
|
65
|
+
*/
|
|
66
|
+
Type: BatchResourceRequirementType | string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The quantity of the specified resource to reserve for the container. The values vary based on the
|
|
69
|
+
* <code>type</code> specified.</p>
|
|
70
|
+
* <dl>
|
|
71
|
+
* <dt>type="GPU"</dt>
|
|
72
|
+
* <dd>
|
|
73
|
+
* <p>The number of physical GPUs to reserve for the container. Make sure that the number of GPUs reserved for all
|
|
74
|
+
* containers in a job doesn't exceed the number of available GPUs on the compute resource that the job is launched
|
|
75
|
+
* on.</p>
|
|
76
|
+
* <note>
|
|
77
|
+
* <p>GPUs aren't available for jobs that are running on Fargate resources.</p>
|
|
78
|
+
* </note>
|
|
79
|
+
* </dd>
|
|
80
|
+
* <dt>type="MEMORY"</dt>
|
|
81
|
+
* <dd>
|
|
82
|
+
* <p>The memory hard limit (in MiB) present to the container. This parameter is supported for jobs that are
|
|
83
|
+
* running on EC2 resources. If your container attempts to exceed the memory specified, the container is terminated.
|
|
84
|
+
* This parameter maps to <code>Memory</code> in the <a href="https://docs.docker.com/engine/api/v1.23/#create-a-container">
|
|
85
|
+
* Create a container</a> section of the <a href="https://docs.docker.com/engine/api/v1.23/">Docker Remote API</a>
|
|
86
|
+
* and the <code>--memory</code> option to <a href="https://docs.docker.com/engine/reference/run/">docker run</a>.
|
|
87
|
+
* You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for
|
|
88
|
+
* multi-node parallel (MNP) jobs. It must be specified for each node at least once. This parameter maps to
|
|
89
|
+
* <code>Memory</code> in the <a href="https://docs.docker.com/engine/api/v1.23/#create-a-container">
|
|
90
|
+
* Create a container</a> section of the <a href="https://docs.docker.com/engine/api/v1.23/">Docker Remote API</a> and the
|
|
91
|
+
* <code>--memory</code> option to <a href="https://docs.docker.com/engine/reference/run/">docker run</a>.</p>
|
|
92
|
+
* <note>
|
|
93
|
+
* <p>If you're trying to maximize your resource utilization by providing your jobs as much memory as possible for
|
|
94
|
+
* a particular instance type, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/memory-management.html">Memory
|
|
95
|
+
* management</a> in the <i>Batch User Guide</i>.</p>
|
|
96
|
+
* </note>
|
|
97
|
+
* <p>For jobs that are running on Fargate resources, then <code>value</code> is the hard limit (in MiB), and
|
|
98
|
+
* must match one of the supported values and the <code>VCPU</code> values must be one of the values supported for
|
|
99
|
+
* that memory value.</p>
|
|
100
|
+
* <dl>
|
|
101
|
+
* <dt>value = 512</dt>
|
|
102
|
+
* <dd>
|
|
103
|
+
* <p>
|
|
104
|
+
* <code>VCPU</code> = 0.25</p>
|
|
105
|
+
* </dd>
|
|
106
|
+
* <dt>value = 1024</dt>
|
|
107
|
+
* <dd>
|
|
108
|
+
* <p>
|
|
109
|
+
* <code>VCPU</code> = 0.25 or 0.5</p>
|
|
110
|
+
* </dd>
|
|
111
|
+
* <dt>value = 2048</dt>
|
|
112
|
+
* <dd>
|
|
113
|
+
* <p>
|
|
114
|
+
* <code>VCPU</code> = 0.25, 0.5, or 1</p>
|
|
115
|
+
* </dd>
|
|
116
|
+
* <dt>value = 3072</dt>
|
|
117
|
+
* <dd>
|
|
118
|
+
* <p>
|
|
119
|
+
* <code>VCPU</code> = 0.5, or 1</p>
|
|
120
|
+
* </dd>
|
|
121
|
+
* <dt>value = 4096</dt>
|
|
122
|
+
* <dd>
|
|
123
|
+
* <p>
|
|
124
|
+
* <code>VCPU</code> = 0.5, 1, or 2</p>
|
|
125
|
+
* </dd>
|
|
126
|
+
* <dt>value = 5120, 6144, or 7168</dt>
|
|
127
|
+
* <dd>
|
|
128
|
+
* <p>
|
|
129
|
+
* <code>VCPU</code> = 1 or 2</p>
|
|
130
|
+
* </dd>
|
|
131
|
+
* <dt>value = 8192</dt>
|
|
132
|
+
* <dd>
|
|
133
|
+
* <p>
|
|
134
|
+
* <code>VCPU</code> = 1, 2, 4, or 8</p>
|
|
135
|
+
* </dd>
|
|
136
|
+
* <dt>value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360</dt>
|
|
137
|
+
* <dd>
|
|
138
|
+
* <p>
|
|
139
|
+
* <code>VCPU</code> = 2 or 4</p>
|
|
140
|
+
* </dd>
|
|
141
|
+
* <dt>value = 16384</dt>
|
|
142
|
+
* <dd>
|
|
143
|
+
* <p>
|
|
144
|
+
* <code>VCPU</code> = 2, 4, or 8</p>
|
|
145
|
+
* </dd>
|
|
146
|
+
* <dt>value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720</dt>
|
|
147
|
+
* <dd>
|
|
148
|
+
* <p>
|
|
149
|
+
* <code>VCPU</code> = 4</p>
|
|
150
|
+
* </dd>
|
|
151
|
+
* <dt>value = 20480, 24576, or 28672</dt>
|
|
152
|
+
* <dd>
|
|
153
|
+
* <p>
|
|
154
|
+
* <code>VCPU</code> = 4 or 8</p>
|
|
155
|
+
* </dd>
|
|
156
|
+
* <dt>value = 36864, 45056, 53248, or 61440</dt>
|
|
157
|
+
* <dd>
|
|
158
|
+
* <p>
|
|
159
|
+
* <code>VCPU</code> = 8</p>
|
|
160
|
+
* </dd>
|
|
161
|
+
* <dt>value = 32768, 40960, 49152, or 57344</dt>
|
|
162
|
+
* <dd>
|
|
163
|
+
* <p>
|
|
164
|
+
* <code>VCPU</code> = 8 or 16</p>
|
|
165
|
+
* </dd>
|
|
166
|
+
* <dt>value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880</dt>
|
|
167
|
+
* <dd>
|
|
168
|
+
* <p>
|
|
169
|
+
* <code>VCPU</code> = 16</p>
|
|
170
|
+
* </dd>
|
|
171
|
+
* </dl>
|
|
172
|
+
* </dd>
|
|
173
|
+
* <dt>type="VCPU"</dt>
|
|
174
|
+
* <dd>
|
|
175
|
+
* <p>The number of vCPUs reserved for the container. This parameter maps to <code>CpuShares</code> in the
|
|
176
|
+
* <a href="https://docs.docker.com/engine/api/v1.23/#create-a-container">
|
|
177
|
+
* Create a container</a> section of the <a href="https://docs.docker.com/engine/api/v1.23/">Docker Remote API</a>
|
|
178
|
+
* and the <code>--cpu-shares</code> option to
|
|
179
|
+
* <a href="https://docs.docker.com/engine/reference/run/">docker run</a>. Each vCPU is equivalent to 1,024 CPU shares. For EC2
|
|
180
|
+
* resources, you must specify at least one vCPU. This is required but can be specified in several places; it must be
|
|
181
|
+
* specified for each node at least once.</p>
|
|
182
|
+
* <p>The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For more information about
|
|
183
|
+
* Fargate quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecs-service.html#service-quotas-fargate">Fargate quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
184
|
+
* <p>For jobs that are running on Fargate resources, then <code>value</code> must match one of the supported
|
|
185
|
+
* values and the <code>MEMORY</code> values must be one of the values supported for that <code>VCPU</code> value.
|
|
186
|
+
* The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16</p>
|
|
187
|
+
* <dl>
|
|
188
|
+
* <dt>value = 0.25</dt>
|
|
189
|
+
* <dd>
|
|
190
|
+
* <p>
|
|
191
|
+
* <code>MEMORY</code> = 512, 1024, or 2048</p>
|
|
192
|
+
* </dd>
|
|
193
|
+
* <dt>value = 0.5</dt>
|
|
194
|
+
* <dd>
|
|
195
|
+
* <p>
|
|
196
|
+
* <code>MEMORY</code> = 1024, 2048, 3072, or 4096</p>
|
|
197
|
+
* </dd>
|
|
198
|
+
* <dt>value = 1</dt>
|
|
199
|
+
* <dd>
|
|
200
|
+
* <p>
|
|
201
|
+
* <code>MEMORY</code> = 2048, 3072, 4096, 5120, 6144, 7168, or 8192</p>
|
|
202
|
+
* </dd>
|
|
203
|
+
* <dt>value = 2</dt>
|
|
204
|
+
* <dd>
|
|
205
|
+
* <p>
|
|
206
|
+
* <code>MEMORY</code> = 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, or 16384</p>
|
|
207
|
+
* </dd>
|
|
208
|
+
* <dt>value = 4</dt>
|
|
209
|
+
* <dd>
|
|
210
|
+
* <p>
|
|
211
|
+
* <code>MEMORY</code> = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456,
|
|
212
|
+
* 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720</p>
|
|
213
|
+
* </dd>
|
|
214
|
+
* <dt>value = 8</dt>
|
|
215
|
+
* <dd>
|
|
216
|
+
* <p>
|
|
217
|
+
* <code>MEMORY</code> = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056, 49152, 53248, 57344, or 61440
|
|
218
|
+
* </p>
|
|
219
|
+
* </dd>
|
|
220
|
+
* <dt>value = 16</dt>
|
|
221
|
+
* <dd>
|
|
222
|
+
* <p>
|
|
223
|
+
* <code>MEMORY</code> = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880
|
|
224
|
+
* </p>
|
|
225
|
+
* </dd>
|
|
226
|
+
* </dl>
|
|
227
|
+
* </dd>
|
|
228
|
+
* </dl>
|
|
229
|
+
*/
|
|
230
|
+
Value: string | undefined;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* <p>The overrides that are sent to a container.</p>
|
|
234
|
+
*/
|
|
235
|
+
export interface BatchContainerOverrides {
|
|
236
|
+
/**
|
|
237
|
+
* <p>The command to send to the container that overrides the default command from the Docker image or the task definition.</p>
|
|
238
|
+
*/
|
|
239
|
+
Command?: string[];
|
|
240
|
+
/**
|
|
241
|
+
* <p>The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing
|
|
242
|
+
* environment variables from the Docker image or the task definition.</p>
|
|
243
|
+
* <note>
|
|
244
|
+
* <p>Environment variables cannot start with "<code>Batch</code>". This naming convention is reserved for variables that Batch sets.</p>
|
|
245
|
+
* </note>
|
|
246
|
+
*/
|
|
247
|
+
Environment?: BatchEnvironmentVariable[];
|
|
248
|
+
/**
|
|
249
|
+
* <p>The instance type to use for a multi-node parallel job.</p>
|
|
250
|
+
* <note>
|
|
251
|
+
* <p>This parameter isn't applicable to single-node container jobs or jobs that run on Fargate resources, and shouldn't be provided.</p>
|
|
252
|
+
* </note>
|
|
253
|
+
*/
|
|
254
|
+
InstanceType?: string;
|
|
255
|
+
/**
|
|
256
|
+
* <p>The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include <code>GPU</code>, <code>MEMORY</code>,
|
|
257
|
+
* and <code>VCPU</code>.</p>
|
|
258
|
+
*/
|
|
259
|
+
ResourceRequirements?: BatchResourceRequirement[];
|
|
260
|
+
}
|
|
261
|
+
export declare enum BatchJobDependencyType {
|
|
262
|
+
N_TO_N = "N_TO_N",
|
|
263
|
+
SEQUENTIAL = "SEQUENTIAL"
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* <p>An object that represents an Batch job dependency.</p>
|
|
267
|
+
*/
|
|
268
|
+
export interface BatchJobDependency {
|
|
269
|
+
/**
|
|
270
|
+
* <p>The job ID of the Batch job that's associated with this dependency.</p>
|
|
271
|
+
*/
|
|
272
|
+
JobId?: string;
|
|
273
|
+
/**
|
|
274
|
+
* <p>The type of the job dependency.</p>
|
|
275
|
+
*/
|
|
276
|
+
Type?: BatchJobDependencyType | string;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* <p>The retry strategy that's associated with a job. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/job_retries.html">
|
|
280
|
+
* Automated job retries</a> in the <i>Batch User Guide</i>.</p>
|
|
281
|
+
*/
|
|
282
|
+
export interface BatchRetryStrategy {
|
|
283
|
+
/**
|
|
284
|
+
* <p>The number of times to move a job to the <code>RUNNABLE</code> status. If the value of <code>attempts</code> is greater than one, the job is retried on
|
|
285
|
+
* failure the same number of attempts as the value.</p>
|
|
286
|
+
*/
|
|
287
|
+
Attempts?: number;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* <p>The details of a capacity provider strategy. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CapacityProviderStrategyItem.html">CapacityProviderStrategyItem</a> in the Amazon ECS API Reference.</p>
|
|
291
|
+
*/
|
|
292
|
+
export interface CapacityProviderStrategyItem {
|
|
293
|
+
/**
|
|
294
|
+
* <p>The short name of the capacity provider.</p>
|
|
295
|
+
*/
|
|
296
|
+
capacityProvider: string | undefined;
|
|
297
|
+
/**
|
|
298
|
+
* <p>The weight value designates the relative percentage of the total number of tasks launched
|
|
299
|
+
* that should use the specified capacity provider. The weight value is taken into consideration
|
|
300
|
+
* after the base value, if defined, is satisfied.</p>
|
|
301
|
+
*/
|
|
302
|
+
weight?: number;
|
|
303
|
+
/**
|
|
304
|
+
* <p>The base value designates how many tasks, at a minimum, to run on the specified capacity
|
|
305
|
+
* provider. Only one capacity provider in a capacity provider strategy can have a base defined.
|
|
306
|
+
* If no value is specified, the default value of 0 is used. </p>
|
|
307
|
+
*/
|
|
308
|
+
base?: number;
|
|
309
|
+
}
|
|
310
|
+
/**
|
|
311
|
+
* <p>An action you attempted resulted in an exception.</p>
|
|
312
|
+
*/
|
|
313
|
+
export declare class ConflictException extends __BaseException {
|
|
314
|
+
readonly name: "ConflictException";
|
|
315
|
+
readonly $fault: "client";
|
|
316
|
+
/**
|
|
317
|
+
* <p>The ID of the resource that caused the exception.</p>
|
|
318
|
+
*/
|
|
319
|
+
resourceId: string | undefined;
|
|
320
|
+
/**
|
|
321
|
+
* <p>The type of resource that caused the exception.</p>
|
|
322
|
+
*/
|
|
323
|
+
resourceType: string | undefined;
|
|
324
|
+
/**
|
|
325
|
+
* @internal
|
|
326
|
+
*/
|
|
327
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
328
|
+
}
|
|
329
|
+
export declare enum RequestedPipeState {
|
|
330
|
+
RUNNING = "RUNNING",
|
|
331
|
+
STOPPED = "STOPPED"
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* <p>These are custom parameter to be used when the target is an API Gateway REST APIs or
|
|
335
|
+
* EventBridge ApiDestinations. In the latter case, these are merged with any
|
|
336
|
+
* InvocationParameters specified on the Connection, with any values from the Connection taking
|
|
337
|
+
* precedence.</p>
|
|
338
|
+
*/
|
|
339
|
+
export interface PipeEnrichmentHttpParameters {
|
|
340
|
+
/**
|
|
341
|
+
* <p>The path parameter values to be used to populate API Gateway REST API or EventBridge
|
|
342
|
+
* ApiDestination path wildcards ("*").</p>
|
|
343
|
+
*/
|
|
344
|
+
PathParameterValues?: string[];
|
|
345
|
+
/**
|
|
346
|
+
* <p>The headers that need to be sent as part of request invoking the API Gateway REST API or
|
|
347
|
+
* EventBridge ApiDestination.</p>
|
|
348
|
+
*/
|
|
349
|
+
HeaderParameters?: Record<string, string>;
|
|
350
|
+
/**
|
|
351
|
+
* <p>The query string keys/values that need to be sent as part of request invoking the API Gateway
|
|
352
|
+
* REST API or EventBridge ApiDestination.</p>
|
|
353
|
+
*/
|
|
354
|
+
QueryStringParameters?: Record<string, string>;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
358
|
+
*/
|
|
359
|
+
export interface PipeEnrichmentParameters {
|
|
360
|
+
/**
|
|
361
|
+
* <p>Valid JSON text passed to the enrichment. In this case, nothing from the event itself is
|
|
362
|
+
* passed to the enrichment. For more information, see <a href="http://www.rfc-editor.org/rfc/rfc7159.txt">The JavaScript Object Notation (JSON) Data
|
|
363
|
+
* Interchange Format</a>.</p>
|
|
364
|
+
*/
|
|
365
|
+
InputTemplate?: string;
|
|
366
|
+
/**
|
|
367
|
+
* <p>Contains the HTTP parameters to use when the target is a API Gateway REST endpoint or
|
|
368
|
+
* EventBridge ApiDestination.</p>
|
|
369
|
+
* <p>If you specify an API Gateway REST API or EventBridge ApiDestination as a target, you can
|
|
370
|
+
* use this parameter to specify headers, path parameters, and query string keys/values as part
|
|
371
|
+
* of your target invoking request. If you're using ApiDestinations, the corresponding Connection
|
|
372
|
+
* can also have these values configured. In case of any conflicting keys, values from the
|
|
373
|
+
* Connection take precedence.</p>
|
|
374
|
+
*/
|
|
375
|
+
HttpParameters?: PipeEnrichmentHttpParameters;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* <p>The Secrets Manager secret that stores your broker credentials.</p>
|
|
379
|
+
*/
|
|
380
|
+
export declare type MQBrokerAccessCredentials = MQBrokerAccessCredentials.BasicAuthMember | MQBrokerAccessCredentials.$UnknownMember;
|
|
381
|
+
export declare namespace MQBrokerAccessCredentials {
|
|
382
|
+
/**
|
|
383
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
384
|
+
*/
|
|
385
|
+
interface BasicAuthMember {
|
|
386
|
+
BasicAuth: string;
|
|
387
|
+
$unknown?: never;
|
|
388
|
+
}
|
|
389
|
+
interface $UnknownMember {
|
|
390
|
+
BasicAuth?: never;
|
|
391
|
+
$unknown: [string, any];
|
|
392
|
+
}
|
|
393
|
+
interface Visitor<T> {
|
|
394
|
+
BasicAuth: (value: string) => T;
|
|
395
|
+
_: (name: string, value: any) => T;
|
|
396
|
+
}
|
|
397
|
+
const visit: <T>(value: MQBrokerAccessCredentials, visitor: Visitor<T>) => T;
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
401
|
+
*/
|
|
402
|
+
export interface PipeSourceActiveMQBrokerParameters {
|
|
403
|
+
/**
|
|
404
|
+
* <p>The credentials needed to access the resource.</p>
|
|
405
|
+
*/
|
|
406
|
+
Credentials: MQBrokerAccessCredentials | undefined;
|
|
407
|
+
/**
|
|
408
|
+
* <p>The name of the destination queue to consume.</p>
|
|
409
|
+
*/
|
|
410
|
+
QueueName: string | undefined;
|
|
411
|
+
/**
|
|
412
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
413
|
+
*/
|
|
414
|
+
BatchSize?: number;
|
|
415
|
+
/**
|
|
416
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
417
|
+
*/
|
|
418
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* <p>A <code>DeadLetterConfig</code> object that contains information about a dead-letter queue configuration.</p>
|
|
422
|
+
*/
|
|
423
|
+
export interface DeadLetterConfig {
|
|
424
|
+
/**
|
|
425
|
+
* <p>The ARN of the Amazon SQS queue specified as the target for the dead-letter queue.</p>
|
|
426
|
+
*/
|
|
427
|
+
Arn?: string;
|
|
428
|
+
}
|
|
429
|
+
export declare enum OnPartialBatchItemFailureStreams {
|
|
430
|
+
AUTOMATIC_BISECT = "AUTOMATIC_BISECT"
|
|
431
|
+
}
|
|
432
|
+
export declare enum DynamoDBStreamStartPosition {
|
|
433
|
+
LATEST = "LATEST",
|
|
434
|
+
TRIM_HORIZON = "TRIM_HORIZON"
|
|
435
|
+
}
|
|
436
|
+
/**
|
|
437
|
+
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
438
|
+
*/
|
|
439
|
+
export interface PipeSourceDynamoDBStreamParameters {
|
|
440
|
+
/**
|
|
441
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
442
|
+
*/
|
|
443
|
+
BatchSize?: number;
|
|
444
|
+
/**
|
|
445
|
+
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
446
|
+
*/
|
|
447
|
+
DeadLetterConfig?: DeadLetterConfig;
|
|
448
|
+
/**
|
|
449
|
+
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
450
|
+
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
451
|
+
*/
|
|
452
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | string;
|
|
453
|
+
/**
|
|
454
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
455
|
+
*/
|
|
456
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
457
|
+
/**
|
|
458
|
+
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
459
|
+
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
460
|
+
*/
|
|
461
|
+
MaximumRecordAgeInSeconds?: number;
|
|
462
|
+
/**
|
|
463
|
+
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
464
|
+
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
465
|
+
*/
|
|
466
|
+
MaximumRetryAttempts?: number;
|
|
467
|
+
/**
|
|
468
|
+
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
469
|
+
*/
|
|
470
|
+
ParallelizationFactor?: number;
|
|
471
|
+
/**
|
|
472
|
+
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
473
|
+
*/
|
|
474
|
+
StartingPosition: DynamoDBStreamStartPosition | string | undefined;
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* <p>Filter events using an event pattern. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html">Events and Event
|
|
478
|
+
* Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
479
|
+
*/
|
|
480
|
+
export interface Filter {
|
|
481
|
+
/**
|
|
482
|
+
* <p>The event pattern.</p>
|
|
483
|
+
*/
|
|
484
|
+
Pattern?: string;
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* <p>The collection of event patterns used to filter events. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html">Events and Event
|
|
488
|
+
* Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
489
|
+
*/
|
|
490
|
+
export interface FilterCriteria {
|
|
491
|
+
/**
|
|
492
|
+
* <p>The event patterns.</p>
|
|
493
|
+
*/
|
|
494
|
+
Filters?: Filter[];
|
|
495
|
+
}
|
|
496
|
+
export declare enum KinesisStreamStartPosition {
|
|
497
|
+
AT_TIMESTAMP = "AT_TIMESTAMP",
|
|
498
|
+
LATEST = "LATEST",
|
|
499
|
+
TRIM_HORIZON = "TRIM_HORIZON"
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
503
|
+
*/
|
|
504
|
+
export interface PipeSourceKinesisStreamParameters {
|
|
505
|
+
/**
|
|
506
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
507
|
+
*/
|
|
508
|
+
BatchSize?: number;
|
|
509
|
+
/**
|
|
510
|
+
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
511
|
+
*/
|
|
512
|
+
DeadLetterConfig?: DeadLetterConfig;
|
|
513
|
+
/**
|
|
514
|
+
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
515
|
+
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
516
|
+
*/
|
|
517
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | string;
|
|
518
|
+
/**
|
|
519
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
520
|
+
*/
|
|
521
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
522
|
+
/**
|
|
523
|
+
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
524
|
+
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
525
|
+
*/
|
|
526
|
+
MaximumRecordAgeInSeconds?: number;
|
|
527
|
+
/**
|
|
528
|
+
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
529
|
+
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
530
|
+
*/
|
|
531
|
+
MaximumRetryAttempts?: number;
|
|
532
|
+
/**
|
|
533
|
+
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
534
|
+
*/
|
|
535
|
+
ParallelizationFactor?: number;
|
|
536
|
+
/**
|
|
537
|
+
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
538
|
+
*/
|
|
539
|
+
StartingPosition: KinesisStreamStartPosition | string | undefined;
|
|
540
|
+
/**
|
|
541
|
+
* <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start reading, in Unix time seconds.</p>
|
|
542
|
+
*/
|
|
543
|
+
StartingPositionTimestamp?: Date;
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* <p>The Secrets Manager secret that stores your stream credentials.</p>
|
|
547
|
+
*/
|
|
548
|
+
export declare type MSKAccessCredentials = MSKAccessCredentials.ClientCertificateTlsAuthMember | MSKAccessCredentials.SaslScram512AuthMember | MSKAccessCredentials.$UnknownMember;
|
|
549
|
+
export declare namespace MSKAccessCredentials {
|
|
550
|
+
/**
|
|
551
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
552
|
+
*/
|
|
553
|
+
interface SaslScram512AuthMember {
|
|
554
|
+
SaslScram512Auth: string;
|
|
555
|
+
ClientCertificateTlsAuth?: never;
|
|
556
|
+
$unknown?: never;
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
560
|
+
*/
|
|
561
|
+
interface ClientCertificateTlsAuthMember {
|
|
562
|
+
SaslScram512Auth?: never;
|
|
563
|
+
ClientCertificateTlsAuth: string;
|
|
564
|
+
$unknown?: never;
|
|
565
|
+
}
|
|
566
|
+
interface $UnknownMember {
|
|
567
|
+
SaslScram512Auth?: never;
|
|
568
|
+
ClientCertificateTlsAuth?: never;
|
|
569
|
+
$unknown: [string, any];
|
|
570
|
+
}
|
|
571
|
+
interface Visitor<T> {
|
|
572
|
+
SaslScram512Auth: (value: string) => T;
|
|
573
|
+
ClientCertificateTlsAuth: (value: string) => T;
|
|
574
|
+
_: (name: string, value: any) => T;
|
|
575
|
+
}
|
|
576
|
+
const visit: <T>(value: MSKAccessCredentials, visitor: Visitor<T>) => T;
|
|
577
|
+
}
|
|
578
|
+
export declare enum MSKStartPosition {
|
|
579
|
+
LATEST = "LATEST",
|
|
580
|
+
TRIM_HORIZON = "TRIM_HORIZON"
|
|
581
|
+
}
|
|
582
|
+
/**
|
|
583
|
+
* <p>The parameters for using an MSK stream as a source.</p>
|
|
584
|
+
*/
|
|
585
|
+
export interface PipeSourceManagedStreamingKafkaParameters {
|
|
586
|
+
/**
|
|
587
|
+
* <p>The name of the topic that the pipe will read from.</p>
|
|
588
|
+
*/
|
|
589
|
+
TopicName: string | undefined;
|
|
590
|
+
/**
|
|
591
|
+
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
592
|
+
*/
|
|
593
|
+
StartingPosition?: MSKStartPosition | string;
|
|
594
|
+
/**
|
|
595
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
596
|
+
*/
|
|
597
|
+
BatchSize?: number;
|
|
598
|
+
/**
|
|
599
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
600
|
+
*/
|
|
601
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
602
|
+
/**
|
|
603
|
+
* <p>The name of the destination queue to consume.</p>
|
|
604
|
+
*/
|
|
605
|
+
ConsumerGroupID?: string;
|
|
606
|
+
/**
|
|
607
|
+
* <p>The credentials needed to access the resource.</p>
|
|
608
|
+
*/
|
|
609
|
+
Credentials?: MSKAccessCredentials;
|
|
610
|
+
}
|
|
611
|
+
/**
|
|
612
|
+
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
613
|
+
*/
|
|
614
|
+
export interface PipeSourceRabbitMQBrokerParameters {
|
|
615
|
+
/**
|
|
616
|
+
* <p>The credentials needed to access the resource.</p>
|
|
617
|
+
*/
|
|
618
|
+
Credentials: MQBrokerAccessCredentials | undefined;
|
|
619
|
+
/**
|
|
620
|
+
* <p>The name of the destination queue to consume.</p>
|
|
621
|
+
*/
|
|
622
|
+
QueueName: string | undefined;
|
|
623
|
+
/**
|
|
624
|
+
* <p>The name of the virtual host associated with the source broker.</p>
|
|
625
|
+
*/
|
|
626
|
+
VirtualHost?: string;
|
|
627
|
+
/**
|
|
628
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
629
|
+
*/
|
|
630
|
+
BatchSize?: number;
|
|
631
|
+
/**
|
|
632
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
633
|
+
*/
|
|
634
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
635
|
+
}
|
|
636
|
+
/**
|
|
637
|
+
* <p>The Secrets Manager secret that stores your stream credentials.</p>
|
|
638
|
+
*/
|
|
639
|
+
export declare type SelfManagedKafkaAccessConfigurationCredentials = SelfManagedKafkaAccessConfigurationCredentials.BasicAuthMember | SelfManagedKafkaAccessConfigurationCredentials.ClientCertificateTlsAuthMember | SelfManagedKafkaAccessConfigurationCredentials.SaslScram256AuthMember | SelfManagedKafkaAccessConfigurationCredentials.SaslScram512AuthMember | SelfManagedKafkaAccessConfigurationCredentials.$UnknownMember;
|
|
640
|
+
export declare namespace SelfManagedKafkaAccessConfigurationCredentials {
|
|
641
|
+
/**
|
|
642
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
643
|
+
*/
|
|
644
|
+
interface BasicAuthMember {
|
|
645
|
+
BasicAuth: string;
|
|
646
|
+
SaslScram512Auth?: never;
|
|
647
|
+
SaslScram256Auth?: never;
|
|
648
|
+
ClientCertificateTlsAuth?: never;
|
|
649
|
+
$unknown?: never;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
653
|
+
*/
|
|
654
|
+
interface SaslScram512AuthMember {
|
|
655
|
+
BasicAuth?: never;
|
|
656
|
+
SaslScram512Auth: string;
|
|
657
|
+
SaslScram256Auth?: never;
|
|
658
|
+
ClientCertificateTlsAuth?: never;
|
|
659
|
+
$unknown?: never;
|
|
660
|
+
}
|
|
661
|
+
/**
|
|
662
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
663
|
+
*/
|
|
664
|
+
interface SaslScram256AuthMember {
|
|
665
|
+
BasicAuth?: never;
|
|
666
|
+
SaslScram512Auth?: never;
|
|
667
|
+
SaslScram256Auth: string;
|
|
668
|
+
ClientCertificateTlsAuth?: never;
|
|
669
|
+
$unknown?: never;
|
|
670
|
+
}
|
|
671
|
+
/**
|
|
672
|
+
* <p>The ARN of the Secrets Manager secret.</p>
|
|
673
|
+
*/
|
|
674
|
+
interface ClientCertificateTlsAuthMember {
|
|
675
|
+
BasicAuth?: never;
|
|
676
|
+
SaslScram512Auth?: never;
|
|
677
|
+
SaslScram256Auth?: never;
|
|
678
|
+
ClientCertificateTlsAuth: string;
|
|
679
|
+
$unknown?: never;
|
|
680
|
+
}
|
|
681
|
+
interface $UnknownMember {
|
|
682
|
+
BasicAuth?: never;
|
|
683
|
+
SaslScram512Auth?: never;
|
|
684
|
+
SaslScram256Auth?: never;
|
|
685
|
+
ClientCertificateTlsAuth?: never;
|
|
686
|
+
$unknown: [string, any];
|
|
687
|
+
}
|
|
688
|
+
interface Visitor<T> {
|
|
689
|
+
BasicAuth: (value: string) => T;
|
|
690
|
+
SaslScram512Auth: (value: string) => T;
|
|
691
|
+
SaslScram256Auth: (value: string) => T;
|
|
692
|
+
ClientCertificateTlsAuth: (value: string) => T;
|
|
693
|
+
_: (name: string, value: any) => T;
|
|
694
|
+
}
|
|
695
|
+
const visit: <T>(value: SelfManagedKafkaAccessConfigurationCredentials, visitor: Visitor<T>) => T;
|
|
696
|
+
}
|
|
697
|
+
export declare enum SelfManagedKafkaStartPosition {
|
|
698
|
+
LATEST = "LATEST",
|
|
699
|
+
TRIM_HORIZON = "TRIM_HORIZON"
|
|
700
|
+
}
|
|
701
|
+
/**
|
|
702
|
+
* <p>This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.</p>
|
|
703
|
+
*/
|
|
704
|
+
export interface SelfManagedKafkaAccessConfigurationVpc {
|
|
705
|
+
/**
|
|
706
|
+
* <p>Specifies the subnets associated with the stream. These subnets must all be in the same VPC. You can specify as many as 16 subnets.</p>
|
|
707
|
+
*/
|
|
708
|
+
Subnets?: string[];
|
|
709
|
+
/**
|
|
710
|
+
* <p>Specifies the security groups associated with the stream. These security groups must all be in the same VPC. You can specify as many
|
|
711
|
+
* as five security groups. If you do not specify a security group, the default security group for the VPC is used.</p>
|
|
712
|
+
*/
|
|
713
|
+
SecurityGroup?: string[];
|
|
714
|
+
}
|
|
715
|
+
/**
|
|
716
|
+
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
717
|
+
*/
|
|
718
|
+
export interface PipeSourceSelfManagedKafkaParameters {
|
|
719
|
+
/**
|
|
720
|
+
* <p>The name of the topic that the pipe will read from.</p>
|
|
721
|
+
*/
|
|
722
|
+
TopicName: string | undefined;
|
|
723
|
+
/**
|
|
724
|
+
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
725
|
+
*/
|
|
726
|
+
StartingPosition?: SelfManagedKafkaStartPosition | string;
|
|
727
|
+
/**
|
|
728
|
+
* <p>An array of server URLs.</p>
|
|
729
|
+
*/
|
|
730
|
+
AdditionalBootstrapServers?: string[];
|
|
731
|
+
/**
|
|
732
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
733
|
+
*/
|
|
734
|
+
BatchSize?: number;
|
|
735
|
+
/**
|
|
736
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
737
|
+
*/
|
|
738
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
739
|
+
/**
|
|
740
|
+
* <p>The name of the destination queue to consume.</p>
|
|
741
|
+
*/
|
|
742
|
+
ConsumerGroupID?: string;
|
|
743
|
+
/**
|
|
744
|
+
* <p>The credentials needed to access the resource.</p>
|
|
745
|
+
*/
|
|
746
|
+
Credentials?: SelfManagedKafkaAccessConfigurationCredentials;
|
|
747
|
+
/**
|
|
748
|
+
* <p>The ARN of the Secrets Manager secret used for certification.</p>
|
|
749
|
+
*/
|
|
750
|
+
ServerRootCaCertificate?: string;
|
|
751
|
+
/**
|
|
752
|
+
* <p>This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.</p>
|
|
753
|
+
*/
|
|
754
|
+
Vpc?: SelfManagedKafkaAccessConfigurationVpc;
|
|
755
|
+
}
|
|
756
|
+
/**
|
|
757
|
+
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
758
|
+
*/
|
|
759
|
+
export interface PipeSourceSqsQueueParameters {
|
|
760
|
+
/**
|
|
761
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
762
|
+
*/
|
|
763
|
+
BatchSize?: number;
|
|
764
|
+
/**
|
|
765
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
766
|
+
*/
|
|
767
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
768
|
+
}
|
|
769
|
+
/**
|
|
770
|
+
* <p>The parameters required to set up a source for your pipe.</p>
|
|
771
|
+
*/
|
|
772
|
+
export interface PipeSourceParameters {
|
|
773
|
+
/**
|
|
774
|
+
* <p>The collection of event patterns used to filter events. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html">Events and Event
|
|
775
|
+
* Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
776
|
+
*/
|
|
777
|
+
FilterCriteria?: FilterCriteria;
|
|
778
|
+
/**
|
|
779
|
+
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
780
|
+
*/
|
|
781
|
+
KinesisStreamParameters?: PipeSourceKinesisStreamParameters;
|
|
782
|
+
/**
|
|
783
|
+
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
784
|
+
*/
|
|
785
|
+
DynamoDBStreamParameters?: PipeSourceDynamoDBStreamParameters;
|
|
786
|
+
/**
|
|
787
|
+
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
788
|
+
*/
|
|
789
|
+
SqsQueueParameters?: PipeSourceSqsQueueParameters;
|
|
790
|
+
/**
|
|
791
|
+
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
792
|
+
*/
|
|
793
|
+
ActiveMQBrokerParameters?: PipeSourceActiveMQBrokerParameters;
|
|
794
|
+
/**
|
|
795
|
+
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
796
|
+
*/
|
|
797
|
+
RabbitMQBrokerParameters?: PipeSourceRabbitMQBrokerParameters;
|
|
798
|
+
/**
|
|
799
|
+
* <p>The parameters for using an MSK stream as a source.</p>
|
|
800
|
+
*/
|
|
801
|
+
ManagedStreamingKafkaParameters?: PipeSourceManagedStreamingKafkaParameters;
|
|
802
|
+
/**
|
|
803
|
+
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
804
|
+
*/
|
|
805
|
+
SelfManagedKafkaParameters?: PipeSourceSelfManagedKafkaParameters;
|
|
806
|
+
}
|
|
807
|
+
/**
|
|
808
|
+
* <p>The parameters for using an Batch job as a target.</p>
|
|
809
|
+
*/
|
|
810
|
+
export interface PipeTargetBatchJobParameters {
|
|
811
|
+
/**
|
|
812
|
+
* <p>The job definition used by this job. This value can be one of <code>name</code>, <code>name:revision</code>, or the Amazon Resource Name (ARN) for the job definition.
|
|
813
|
+
* If name is specified without a revision then the latest active revision is used.</p>
|
|
814
|
+
*/
|
|
815
|
+
JobDefinition: string | undefined;
|
|
816
|
+
/**
|
|
817
|
+
* <p>The name of the job. It can be up to 128 letters long. The first character must be alphanumeric, can contain uppercase and lowercase letters, numbers, hyphens (-),
|
|
818
|
+
* and underscores (_).</p>
|
|
819
|
+
*/
|
|
820
|
+
JobName: string | undefined;
|
|
821
|
+
/**
|
|
822
|
+
* <p>The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000.
|
|
823
|
+
* If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an Batch job.</p>
|
|
824
|
+
*/
|
|
825
|
+
ArrayProperties?: BatchArrayProperties;
|
|
826
|
+
/**
|
|
827
|
+
* <p>The retry strategy to use for failed jobs. When a retry strategy is specified here, it overrides the retry strategy defined in the job definition.</p>
|
|
828
|
+
*/
|
|
829
|
+
RetryStrategy?: BatchRetryStrategy;
|
|
830
|
+
/**
|
|
831
|
+
* <p>The overrides that are sent to a container.</p>
|
|
832
|
+
*/
|
|
833
|
+
ContainerOverrides?: BatchContainerOverrides;
|
|
834
|
+
/**
|
|
835
|
+
* <p>A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a <code>SEQUENTIAL</code> type dependency without
|
|
836
|
+
* specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an <code>N_TO_N</code>
|
|
837
|
+
* type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each
|
|
838
|
+
* dependency to complete before it can begin.</p>
|
|
839
|
+
*/
|
|
840
|
+
DependsOn?: BatchJobDependency[];
|
|
841
|
+
/**
|
|
842
|
+
* <p>Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and
|
|
843
|
+
* value pair mapping. Parameters included here override any corresponding parameter defaults from the job definition.</p>
|
|
844
|
+
*/
|
|
845
|
+
Parameters?: Record<string, string>;
|
|
846
|
+
}
|
|
847
|
+
/**
|
|
848
|
+
* <p>The parameters for using an CloudWatch Logs log stream as a target.</p>
|
|
849
|
+
*/
|
|
850
|
+
export interface PipeTargetCloudWatchLogsParameters {
|
|
851
|
+
/**
|
|
852
|
+
* <p>The name of the log stream.</p>
|
|
853
|
+
*/
|
|
854
|
+
LogStreamName?: string;
|
|
855
|
+
/**
|
|
856
|
+
* <p>The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>
|
|
857
|
+
*/
|
|
858
|
+
Timestamp?: string;
|
|
859
|
+
}
|
|
860
|
+
export declare enum LaunchType {
|
|
861
|
+
EC2 = "EC2",
|
|
862
|
+
EXTERNAL = "EXTERNAL",
|
|
863
|
+
FARGATE = "FARGATE"
|
|
864
|
+
}
|
|
865
|
+
/**
|
|
866
|
+
* <p>This structure specifies the network configuration for an Amazon ECS task.</p>
|
|
867
|
+
*/
|
|
868
|
+
export interface NetworkConfiguration {
|
|
869
|
+
/**
|
|
870
|
+
* <p>Use this structure to specify the VPC subnets and security groups for the task, and
|
|
871
|
+
* whether a public IP address is to be used. This structure is relevant only for ECS tasks that
|
|
872
|
+
* use the <code>awsvpc</code> network mode.</p>
|
|
873
|
+
*/
|
|
874
|
+
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
875
|
+
}
|
|
876
|
+
/**
|
|
877
|
+
* <p>The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can
|
|
878
|
+
* override the existing environment variables from the Docker image or the task definition. You must also specify a container name.</p>
|
|
879
|
+
*/
|
|
880
|
+
export interface EcsEnvironmentVariable {
|
|
881
|
+
/**
|
|
882
|
+
* <p>The name of the key-value pair. For environment variables, this is the name of the environment variable.</p>
|
|
883
|
+
*/
|
|
884
|
+
name?: string;
|
|
885
|
+
/**
|
|
886
|
+
* <p>The value of the key-value pair. For environment variables, this is the value of the environment variable.</p>
|
|
887
|
+
*/
|
|
888
|
+
value?: string;
|
|
889
|
+
}
|
|
890
|
+
export declare enum EcsEnvironmentFileType {
|
|
891
|
+
s3 = "s3"
|
|
892
|
+
}
|
|
893
|
+
/**
|
|
894
|
+
* <p>A list of files containing the environment variables to pass to a container. You can
|
|
895
|
+
* specify up to ten environment files. The file must have a <code>.env</code> file
|
|
896
|
+
* extension. Each line in an environment file should contain an environment variable in
|
|
897
|
+
* <code>VARIABLE=VALUE</code> format. Lines beginning with <code>#</code> are treated
|
|
898
|
+
* as comments and are ignored. For more information about the environment variable file
|
|
899
|
+
* syntax, see <a href="https://docs.docker.com/compose/env-file/">Declare default
|
|
900
|
+
* environment variables in file</a>.</p>
|
|
901
|
+
* <p>If there are environment variables specified using the <code>environment</code>
|
|
902
|
+
* parameter in a container definition, they take precedence over the variables contained
|
|
903
|
+
* within an environment file. If multiple environment files are specified that contain the
|
|
904
|
+
* same variable, they're processed from the top down. We recommend that you use unique
|
|
905
|
+
* variable names. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/taskdef-envfiles.html">Specifying environment
|
|
906
|
+
* variables</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
907
|
+
* <p>This parameter is only supported for tasks hosted on Fargate using the
|
|
908
|
+
* following platform versions:</p>
|
|
909
|
+
* <ul>
|
|
910
|
+
* <li>
|
|
911
|
+
* <p>Linux platform version <code>1.4.0</code> or later.</p>
|
|
912
|
+
* </li>
|
|
913
|
+
* <li>
|
|
914
|
+
* <p>Windows platform version <code>1.0.0</code> or later.</p>
|
|
915
|
+
* </li>
|
|
916
|
+
* </ul>
|
|
917
|
+
*/
|
|
918
|
+
export interface EcsEnvironmentFile {
|
|
919
|
+
/**
|
|
920
|
+
* <p>The file type to use. The only supported value is <code>s3</code>.</p>
|
|
921
|
+
*/
|
|
922
|
+
type: EcsEnvironmentFileType | string | undefined;
|
|
923
|
+
/**
|
|
924
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.</p>
|
|
925
|
+
*/
|
|
926
|
+
value: string | undefined;
|
|
927
|
+
}
|
|
928
|
+
export declare enum EcsResourceRequirementType {
|
|
929
|
+
GPU = "GPU",
|
|
930
|
+
InferenceAccelerator = "InferenceAccelerator"
|
|
931
|
+
}
|
|
932
|
+
/**
|
|
933
|
+
* <p>The type and amount of a resource to assign to a container. The supported resource
|
|
934
|
+
* types are GPUs and Elastic Inference accelerators. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html">Working with
|
|
935
|
+
* GPUs on Amazon ECS</a> or <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html">Working with
|
|
936
|
+
* Amazon Elastic Inference on Amazon ECS</a> in the
|
|
937
|
+
* <i>Amazon Elastic Container Service Developer Guide</i>
|
|
938
|
+
* </p>
|
|
939
|
+
*/
|
|
940
|
+
export interface EcsResourceRequirement {
|
|
941
|
+
/**
|
|
942
|
+
* <p>The type of resource to assign to a container. The supported values are
|
|
943
|
+
* <code>GPU</code> or <code>InferenceAccelerator</code>.</p>
|
|
944
|
+
*/
|
|
945
|
+
type: EcsResourceRequirementType | string | undefined;
|
|
946
|
+
/**
|
|
947
|
+
* <p>The value for the specified resource type.</p>
|
|
948
|
+
* <p>If the <code>GPU</code> type is used, the value is the number of physical
|
|
949
|
+
* <code>GPUs</code> the Amazon ECS container agent reserves for the container. The number
|
|
950
|
+
* of GPUs that's reserved for all containers in a task can't exceed the number of
|
|
951
|
+
* available GPUs on the container instance that the task is launched on.</p>
|
|
952
|
+
* <p>If the <code>InferenceAccelerator</code> type is used, the <code>value</code> matches
|
|
953
|
+
* the <code>deviceName</code> for an InferenceAccelerator specified in a
|
|
954
|
+
* task definition.</p>
|
|
955
|
+
*/
|
|
956
|
+
value: string | undefined;
|
|
957
|
+
}
|
|
958
|
+
/**
|
|
959
|
+
* <p>The overrides that are sent to a container. An empty container override can be passed in. An example of an empty
|
|
960
|
+
* container override is <code>{"containerOverrides": [ ] }</code>. If a non-empty container override is specified, the <code>name</code> parameter must be included.</p>
|
|
961
|
+
*/
|
|
962
|
+
export interface EcsContainerOverride {
|
|
963
|
+
/**
|
|
964
|
+
* <p>The command to send to the container that overrides the default command from the Docker image or the task definition. You must also specify a container name.</p>
|
|
965
|
+
*/
|
|
966
|
+
Command?: string[];
|
|
967
|
+
/**
|
|
968
|
+
* <p>The number of <code>cpu</code> units reserved for the container, instead of the default value from the task definition. You must also specify a container name.</p>
|
|
969
|
+
*/
|
|
970
|
+
Cpu?: number;
|
|
971
|
+
/**
|
|
972
|
+
* <p>The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can
|
|
973
|
+
* override the existing environment variables from the Docker image or the task definition. You must also specify a container name.</p>
|
|
974
|
+
*/
|
|
975
|
+
Environment?: EcsEnvironmentVariable[];
|
|
976
|
+
/**
|
|
977
|
+
* <p>A list of files containing the environment variables to pass to a container, instead of the value from the container definition.</p>
|
|
978
|
+
*/
|
|
979
|
+
EnvironmentFiles?: EcsEnvironmentFile[];
|
|
980
|
+
/**
|
|
981
|
+
* <p>The hard limit (in MiB) of memory to present to the container, instead of the default value from the task definition.
|
|
982
|
+
* If your container attempts to exceed the memory specified here, the container is killed. You must also specify a container name.</p>
|
|
983
|
+
*/
|
|
984
|
+
Memory?: number;
|
|
985
|
+
/**
|
|
986
|
+
* <p>The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the task definition.
|
|
987
|
+
* You must also specify a container name.</p>
|
|
988
|
+
*/
|
|
989
|
+
MemoryReservation?: number;
|
|
990
|
+
/**
|
|
991
|
+
* <p>The name of the container that receives the override. This parameter is required if any override is specified.</p>
|
|
992
|
+
*/
|
|
993
|
+
Name?: string;
|
|
994
|
+
/**
|
|
995
|
+
* <p>The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU.</p>
|
|
996
|
+
*/
|
|
997
|
+
ResourceRequirements?: EcsResourceRequirement[];
|
|
998
|
+
}
|
|
999
|
+
/**
|
|
1000
|
+
* <p>The amount of ephemeral storage to allocate for the task. This parameter is used to
|
|
1001
|
+
* expand the total amount of ephemeral storage available, beyond the default amount, for
|
|
1002
|
+
* tasks hosted on Fargate. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/userguide/using_data_volumes.html">Fargate task
|
|
1003
|
+
* storage</a> in the <i>Amazon ECS User Guide for Fargate</i>.</p>
|
|
1004
|
+
* <note>
|
|
1005
|
+
* <p>This parameter is only supported for tasks hosted on Fargate using
|
|
1006
|
+
* Linux platform version <code>1.4.0</code> or later. This parameter is not supported
|
|
1007
|
+
* for Windows containers on Fargate.</p>
|
|
1008
|
+
* </note>
|
|
1009
|
+
*/
|
|
1010
|
+
export interface EcsEphemeralStorage {
|
|
1011
|
+
/**
|
|
1012
|
+
* <p>The total amount, in GiB, of ephemeral storage to set for the task. The minimum
|
|
1013
|
+
* supported value is <code>21</code> GiB and the maximum supported value is
|
|
1014
|
+
* <code>200</code> GiB.</p>
|
|
1015
|
+
*/
|
|
1016
|
+
sizeInGiB: number | undefined;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* <p>Details on an Elastic Inference accelerator task override. This parameter is used to
|
|
1020
|
+
* override the Elastic Inference accelerator specified in the task definition. For more
|
|
1021
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/userguide/ecs-inference.html">Working with Amazon
|
|
1022
|
+
* Elastic Inference on Amazon ECS</a> in the
|
|
1023
|
+
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1024
|
+
*/
|
|
1025
|
+
export interface EcsInferenceAcceleratorOverride {
|
|
1026
|
+
/**
|
|
1027
|
+
* <p>The Elastic Inference accelerator device name to override for the task. This parameter must match a <code>deviceName</code> specified in the task definition.</p>
|
|
1028
|
+
*/
|
|
1029
|
+
deviceName?: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* <p>The Elastic Inference accelerator type to use.</p>
|
|
1032
|
+
*/
|
|
1033
|
+
deviceType?: string;
|
|
1034
|
+
}
|
|
1035
|
+
/**
|
|
1036
|
+
* <p>The overrides that are associated with a task.</p>
|
|
1037
|
+
*/
|
|
1038
|
+
export interface EcsTaskOverride {
|
|
1039
|
+
/**
|
|
1040
|
+
* <p>One or more container overrides that are sent to a task.</p>
|
|
1041
|
+
*/
|
|
1042
|
+
ContainerOverrides?: EcsContainerOverride[];
|
|
1043
|
+
/**
|
|
1044
|
+
* <p>The cpu override for the task.</p>
|
|
1045
|
+
*/
|
|
1046
|
+
Cpu?: string;
|
|
1047
|
+
/**
|
|
1048
|
+
* <p>The ephemeral storage setting override for the task.</p>
|
|
1049
|
+
* <note>
|
|
1050
|
+
* <p>This parameter is only supported for tasks hosted on Fargate that
|
|
1051
|
+
* use the following platform versions:</p>
|
|
1052
|
+
* <ul>
|
|
1053
|
+
* <li>
|
|
1054
|
+
* <p>Linux platform version <code>1.4.0</code> or later.</p>
|
|
1055
|
+
* </li>
|
|
1056
|
+
* <li>
|
|
1057
|
+
* <p>Windows platform version <code>1.0.0</code> or later.</p>
|
|
1058
|
+
* </li>
|
|
1059
|
+
* </ul>
|
|
1060
|
+
* </note>
|
|
1061
|
+
*/
|
|
1062
|
+
EphemeralStorage?: EcsEphemeralStorage;
|
|
1063
|
+
/**
|
|
1064
|
+
* <p>The Amazon Resource Name (ARN) of the task execution IAM role override for the task. For more
|
|
1065
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html">Amazon ECS task
|
|
1066
|
+
* execution IAM role</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1067
|
+
*/
|
|
1068
|
+
ExecutionRoleArn?: string;
|
|
1069
|
+
/**
|
|
1070
|
+
* <p>The Elastic Inference accelerator override for the task.</p>
|
|
1071
|
+
*/
|
|
1072
|
+
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[];
|
|
1073
|
+
/**
|
|
1074
|
+
* <p>The memory override for the task.</p>
|
|
1075
|
+
*/
|
|
1076
|
+
Memory?: string;
|
|
1077
|
+
/**
|
|
1078
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers
|
|
1079
|
+
* in this task are granted the permissions that are specified in this role. For more
|
|
1080
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html">IAM Role for Tasks</a>
|
|
1081
|
+
* in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1082
|
+
*/
|
|
1083
|
+
TaskRoleArn?: string;
|
|
1084
|
+
}
|
|
1085
|
+
export declare enum PlacementConstraintType {
|
|
1086
|
+
DISTINCT_INSTANCE = "distinctInstance",
|
|
1087
|
+
MEMBER_OF = "memberOf"
|
|
1088
|
+
}
|
|
1089
|
+
/**
|
|
1090
|
+
* <p>An object representing a constraint on task placement. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html">Task Placement Constraints</a> in the Amazon Elastic Container Service Developer
|
|
1091
|
+
* Guide.</p>
|
|
1092
|
+
*/
|
|
1093
|
+
export interface PlacementConstraint {
|
|
1094
|
+
/**
|
|
1095
|
+
* <p>The type of constraint. Use distinctInstance to ensure that each task in a particular
|
|
1096
|
+
* group is running on a different container instance. Use memberOf to restrict the selection to
|
|
1097
|
+
* a group of valid candidates. </p>
|
|
1098
|
+
*/
|
|
1099
|
+
type?: PlacementConstraintType | string;
|
|
1100
|
+
/**
|
|
1101
|
+
* <p>A cluster query language expression to apply to the constraint. You cannot specify an
|
|
1102
|
+
* expression if the constraint type is <code>distinctInstance</code>. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html">Cluster Query Language</a> in the Amazon Elastic Container Service Developer Guide.
|
|
1103
|
+
* </p>
|
|
1104
|
+
*/
|
|
1105
|
+
expression?: string;
|
|
1106
|
+
}
|
|
1107
|
+
export declare enum PlacementStrategyType {
|
|
1108
|
+
BINPACK = "binpack",
|
|
1109
|
+
RANDOM = "random",
|
|
1110
|
+
SPREAD = "spread"
|
|
1111
|
+
}
|
|
1112
|
+
/**
|
|
1113
|
+
* <p>The task placement strategy for a task or service. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html">Task Placement Strategies</a> in the Amazon Elastic Container Service Service Developer
|
|
1114
|
+
* Guide.</p>
|
|
1115
|
+
*/
|
|
1116
|
+
export interface PlacementStrategy {
|
|
1117
|
+
/**
|
|
1118
|
+
* <p>The type of placement strategy. The random placement strategy randomly places tasks on
|
|
1119
|
+
* available candidates. The spread placement strategy spreads placement across available
|
|
1120
|
+
* candidates evenly based on the field parameter. The binpack strategy places tasks on available
|
|
1121
|
+
* candidates that have the least available amount of the resource that is specified with the
|
|
1122
|
+
* field parameter. For example, if you binpack on memory, a task is placed on the instance with
|
|
1123
|
+
* the least amount of remaining memory (but still enough to run the task). </p>
|
|
1124
|
+
*/
|
|
1125
|
+
type?: PlacementStrategyType | string;
|
|
1126
|
+
/**
|
|
1127
|
+
* <p>The field to apply the placement strategy against. For the spread placement strategy,
|
|
1128
|
+
* valid values are instanceId (or host, which has the same effect), or any platform or custom
|
|
1129
|
+
* attribute that is applied to a container instance, such as attribute:ecs.availability-zone.
|
|
1130
|
+
* For the binpack placement strategy, valid values are cpu and memory. For the random placement
|
|
1131
|
+
* strategy, this field is not used. </p>
|
|
1132
|
+
*/
|
|
1133
|
+
field?: string;
|
|
1134
|
+
}
|
|
1135
|
+
export declare enum PropagateTags {
|
|
1136
|
+
TASK_DEFINITION = "TASK_DEFINITION"
|
|
1137
|
+
}
|
|
1138
|
+
/**
|
|
1139
|
+
* <p>A key-value pair associated with an Amazon Web Services resource. In EventBridge, rules and event buses
|
|
1140
|
+
* support tagging.</p>
|
|
1141
|
+
*/
|
|
1142
|
+
export interface Tag {
|
|
1143
|
+
/**
|
|
1144
|
+
* <p>A string you can use to assign a value. The combination of tag keys and values can help
|
|
1145
|
+
* you organize and categorize your resources.</p>
|
|
1146
|
+
*/
|
|
1147
|
+
Key: string | undefined;
|
|
1148
|
+
/**
|
|
1149
|
+
* <p>The value for the specified tag key.</p>
|
|
1150
|
+
*/
|
|
1151
|
+
Value: string | undefined;
|
|
1152
|
+
}
|
|
1153
|
+
/**
|
|
1154
|
+
* <p>The parameters for using an Amazon ECS task as a target.</p>
|
|
1155
|
+
*/
|
|
1156
|
+
export interface PipeTargetEcsTaskParameters {
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>The ARN of the task definition to use if the event target is an Amazon ECS task. </p>
|
|
1159
|
+
*/
|
|
1160
|
+
TaskDefinitionArn: string | undefined;
|
|
1161
|
+
/**
|
|
1162
|
+
* <p>The number of tasks to create based on <code>TaskDefinition</code>. The default is 1.</p>
|
|
1163
|
+
*/
|
|
1164
|
+
TaskCount?: number;
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>Specifies the launch type on which your task is running. The launch type that you specify
|
|
1167
|
+
* here must match one of the launch type (compatibilities) of the target task. The
|
|
1168
|
+
* <code>FARGATE</code> value is supported only in the Regions where Fargate with Amazon ECS
|
|
1169
|
+
* is supported. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS-Fargate.html">Fargate on Amazon ECS</a> in
|
|
1170
|
+
* the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1171
|
+
*/
|
|
1172
|
+
LaunchType?: LaunchType | string;
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>Use this structure if the Amazon ECS task uses the <code>awsvpc</code> network mode. This
|
|
1175
|
+
* structure specifies the VPC subnets and security groups associated with the task, and whether
|
|
1176
|
+
* a public IP address is to be used. This structure is required if <code>LaunchType</code> is
|
|
1177
|
+
* <code>FARGATE</code> because the <code>awsvpc</code> mode is required for Fargate
|
|
1178
|
+
* tasks.</p>
|
|
1179
|
+
* <p>If you specify <code>NetworkConfiguration</code> when the target ECS task does not use the
|
|
1180
|
+
* <code>awsvpc</code> network mode, the task fails.</p>
|
|
1181
|
+
*/
|
|
1182
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
1183
|
+
/**
|
|
1184
|
+
* <p>Specifies the platform version for the task. Specify only the numeric portion of the
|
|
1185
|
+
* platform version, such as <code>1.1.0</code>.</p>
|
|
1186
|
+
* <p>This structure is used only if <code>LaunchType</code> is <code>FARGATE</code>. For more
|
|
1187
|
+
* information about valid platform versions, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html">Fargate Platform
|
|
1188
|
+
* Versions</a> in the <i>Amazon Elastic Container Service Developer
|
|
1189
|
+
* Guide</i>.</p>
|
|
1190
|
+
*/
|
|
1191
|
+
PlatformVersion?: string;
|
|
1192
|
+
/**
|
|
1193
|
+
* <p>Specifies an Amazon ECS task group for the task. The maximum length is 255 characters.</p>
|
|
1194
|
+
*/
|
|
1195
|
+
Group?: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* <p>The capacity provider strategy to use for the task.</p>
|
|
1198
|
+
* <p>If a <code>capacityProviderStrategy</code> is specified, the <code>launchType</code>
|
|
1199
|
+
* parameter must be omitted. If no <code>capacityProviderStrategy</code> or launchType is
|
|
1200
|
+
* specified, the <code>defaultCapacityProviderStrategy</code> for the cluster is used. </p>
|
|
1201
|
+
*/
|
|
1202
|
+
CapacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
1203
|
+
/**
|
|
1204
|
+
* <p>Specifies whether to enable Amazon ECS managed tags for the task. For more information,
|
|
1205
|
+
* see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html">Tagging Your Amazon ECS Resources</a> in the Amazon Elastic Container Service Developer
|
|
1206
|
+
* Guide. </p>
|
|
1207
|
+
*/
|
|
1208
|
+
EnableECSManagedTags?: boolean;
|
|
1209
|
+
/**
|
|
1210
|
+
* <p>Whether or not to enable the execute command functionality for the containers in this
|
|
1211
|
+
* task. If true, this enables execute command functionality on all containers in the
|
|
1212
|
+
* task.</p>
|
|
1213
|
+
*/
|
|
1214
|
+
EnableExecuteCommand?: boolean;
|
|
1215
|
+
/**
|
|
1216
|
+
* <p>An array of placement constraint objects to use for the task. You can specify up to 10
|
|
1217
|
+
* constraints per task (including constraints in the task definition and those specified at
|
|
1218
|
+
* runtime).</p>
|
|
1219
|
+
*/
|
|
1220
|
+
PlacementConstraints?: PlacementConstraint[];
|
|
1221
|
+
/**
|
|
1222
|
+
* <p>The placement strategy objects to use for the task. You can specify a maximum of five
|
|
1223
|
+
* strategy rules per task. </p>
|
|
1224
|
+
*/
|
|
1225
|
+
PlacementStrategy?: PlacementStrategy[];
|
|
1226
|
+
/**
|
|
1227
|
+
* <p>Specifies whether to propagate the tags from the task definition to the task. If no value
|
|
1228
|
+
* is specified, the tags are not propagated. Tags can only be propagated to the task during task
|
|
1229
|
+
* creation. To add tags to a task after task creation, use the <code>TagResource</code> API action. </p>
|
|
1230
|
+
*/
|
|
1231
|
+
PropagateTags?: PropagateTags | string;
|
|
1232
|
+
/**
|
|
1233
|
+
* <p>The reference ID to use for the task.</p>
|
|
1234
|
+
*/
|
|
1235
|
+
ReferenceId?: string;
|
|
1236
|
+
/**
|
|
1237
|
+
* <p>The overrides that are associated with a task.</p>
|
|
1238
|
+
*/
|
|
1239
|
+
Overrides?: EcsTaskOverride;
|
|
1240
|
+
/**
|
|
1241
|
+
* <p>The metadata that you apply to the task to help you categorize and organize them. Each tag
|
|
1242
|
+
* consists of a key and an optional value, both of which you define. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html#ECS-RunTask-request-tags">RunTask</a> in the Amazon ECS API Reference.</p>
|
|
1243
|
+
*/
|
|
1244
|
+
Tags?: Tag[];
|
|
1245
|
+
}
|
|
1246
|
+
/**
|
|
1247
|
+
* <p>The parameters for using an EventBridge event bus as a target.</p>
|
|
1248
|
+
*/
|
|
1249
|
+
export interface PipeTargetEventBridgeEventBusParameters {
|
|
1250
|
+
/**
|
|
1251
|
+
* <p>The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is <code>abcde.veo</code>.</p>
|
|
1252
|
+
* <important>
|
|
1253
|
+
* <p>When using Java, you must include <code>auth-crt</code> on the class path.</p>
|
|
1254
|
+
* </important>
|
|
1255
|
+
*/
|
|
1256
|
+
EndpointId?: string;
|
|
1257
|
+
/**
|
|
1258
|
+
* <p>A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.</p>
|
|
1259
|
+
*/
|
|
1260
|
+
DetailType?: string;
|
|
1261
|
+
/**
|
|
1262
|
+
* <p>The source of the event.</p>
|
|
1263
|
+
*/
|
|
1264
|
+
Source?: string;
|
|
1265
|
+
/**
|
|
1266
|
+
* <p>Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily
|
|
1267
|
+
* concerns. Any number, including zero, may be present.</p>
|
|
1268
|
+
*/
|
|
1269
|
+
Resources?: string[];
|
|
1270
|
+
/**
|
|
1271
|
+
* <p>The time stamp of the event, per <a href="https://www.rfc-editor.org/rfc/rfc3339.txt">RFC3339</a>. If no time stamp is provided, the time stamp of the <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">PutEvents</a> call is used.</p>
|
|
1272
|
+
*/
|
|
1273
|
+
Time?: string;
|
|
1274
|
+
}
|
|
1275
|
+
/**
|
|
1276
|
+
* <p>These are custom parameter to be used when the target is an API Gateway REST APIs or
|
|
1277
|
+
* EventBridge ApiDestinations.</p>
|
|
1278
|
+
*/
|
|
1279
|
+
export interface PipeTargetHttpParameters {
|
|
1280
|
+
/**
|
|
1281
|
+
* <p>The path parameter values to be used to populate API Gateway REST API or EventBridge
|
|
1282
|
+
* ApiDestination path wildcards ("*").</p>
|
|
1283
|
+
*/
|
|
1284
|
+
PathParameterValues?: string[];
|
|
1285
|
+
/**
|
|
1286
|
+
* <p>The headers that need to be sent as part of request invoking the API Gateway REST API or
|
|
1287
|
+
* EventBridge ApiDestination.</p>
|
|
1288
|
+
*/
|
|
1289
|
+
HeaderParameters?: Record<string, string>;
|
|
1290
|
+
/**
|
|
1291
|
+
* <p>The query string keys/values that need to be sent as part of request invoking the API Gateway
|
|
1292
|
+
* REST API or EventBridge ApiDestination.</p>
|
|
1293
|
+
*/
|
|
1294
|
+
QueryStringParameters?: Record<string, string>;
|
|
1295
|
+
}
|
|
1296
|
+
/**
|
|
1297
|
+
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
1298
|
+
*/
|
|
1299
|
+
export interface PipeTargetKinesisStreamParameters {
|
|
1300
|
+
/**
|
|
1301
|
+
* <p>Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters
|
|
1302
|
+
* for each key. Amazon Kinesis Data Streams uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard.
|
|
1303
|
+
* Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this
|
|
1304
|
+
* hashing mechanism, all data records with the same partition key map to the same shard within the stream.</p>
|
|
1305
|
+
*/
|
|
1306
|
+
PartitionKey: string | undefined;
|
|
1307
|
+
}
|
|
1308
|
+
export declare enum PipeTargetInvocationType {
|
|
1309
|
+
FIRE_AND_FORGET = "FIRE_AND_FORGET",
|
|
1310
|
+
REQUEST_RESPONSE = "REQUEST_RESPONSE"
|
|
1311
|
+
}
|
|
1312
|
+
/**
|
|
1313
|
+
* <p>The parameters for using a Lambda function as a target.</p>
|
|
1314
|
+
*/
|
|
1315
|
+
export interface PipeTargetLambdaFunctionParameters {
|
|
1316
|
+
/**
|
|
1317
|
+
* <p>Choose from the following options.</p>
|
|
1318
|
+
* <ul>
|
|
1319
|
+
* <li>
|
|
1320
|
+
* <p>
|
|
1321
|
+
* <code>RequestResponse</code> (default) - Invoke the function synchronously. Keep the connection open until
|
|
1322
|
+
* the function returns a response or times out. The API response includes the function response and additional
|
|
1323
|
+
* data.</p>
|
|
1324
|
+
* </li>
|
|
1325
|
+
* <li>
|
|
1326
|
+
* <p>
|
|
1327
|
+
* <code>Event</code> - Invoke the function asynchronously. Send events that fail multiple times to the
|
|
1328
|
+
* function's dead-letter queue (if it's configured). The API response only includes a status code.</p>
|
|
1329
|
+
* </li>
|
|
1330
|
+
* <li>
|
|
1331
|
+
* <p>
|
|
1332
|
+
* <code>DryRun</code> - Validate parameter values and verify that the user or role has permission to invoke
|
|
1333
|
+
* the function.</p>
|
|
1334
|
+
* </li>
|
|
1335
|
+
* </ul>
|
|
1336
|
+
*/
|
|
1337
|
+
InvocationType?: PipeTargetInvocationType | string;
|
|
1338
|
+
}
|
|
1339
|
+
/**
|
|
1340
|
+
* <p>These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the
|
|
1341
|
+
* Amazon Redshift Data API ExecuteStatement.</p>
|
|
1342
|
+
*/
|
|
1343
|
+
export interface PipeTargetRedshiftDataParameters {
|
|
1344
|
+
/**
|
|
1345
|
+
* <p>The name or ARN of the secret that enables access to the database. Required when
|
|
1346
|
+
* authenticating using SageMaker.</p>
|
|
1347
|
+
*/
|
|
1348
|
+
SecretManagerArn?: string;
|
|
1349
|
+
/**
|
|
1350
|
+
* <p>The name of the database. Required when authenticating using temporary credentials.</p>
|
|
1351
|
+
*/
|
|
1352
|
+
Database: string | undefined;
|
|
1353
|
+
/**
|
|
1354
|
+
* <p>The database user name. Required when authenticating using temporary credentials.</p>
|
|
1355
|
+
*/
|
|
1356
|
+
DbUser?: string;
|
|
1357
|
+
/**
|
|
1358
|
+
* <p>The name of the SQL statement. You can name the SQL statement when you create it to
|
|
1359
|
+
* identify the query.</p>
|
|
1360
|
+
*/
|
|
1361
|
+
StatementName?: string;
|
|
1362
|
+
/**
|
|
1363
|
+
* <p>Indicates whether to send an event back to EventBridge after the SQL statement
|
|
1364
|
+
* runs.</p>
|
|
1365
|
+
*/
|
|
1366
|
+
WithEvent?: boolean;
|
|
1367
|
+
/**
|
|
1368
|
+
* <p>The SQL statement text to run.</p>
|
|
1369
|
+
*/
|
|
1370
|
+
Sqls: string[] | undefined;
|
|
1371
|
+
}
|
|
1372
|
+
/**
|
|
1373
|
+
* <p>Name/Value pair of a parameter to start execution of a SageMaker Model Building
|
|
1374
|
+
* Pipeline.</p>
|
|
1375
|
+
*/
|
|
1376
|
+
export interface SageMakerPipelineParameter {
|
|
1377
|
+
/**
|
|
1378
|
+
* <p>Name of parameter to start execution of a SageMaker Model Building Pipeline.</p>
|
|
1379
|
+
*/
|
|
1380
|
+
Name: string | undefined;
|
|
1381
|
+
/**
|
|
1382
|
+
* <p>Value of parameter to start execution of a SageMaker Model Building Pipeline.</p>
|
|
1383
|
+
*/
|
|
1384
|
+
Value: string | undefined;
|
|
1385
|
+
}
|
|
1386
|
+
/**
|
|
1387
|
+
* <p>The parameters for using a SageMaker pipeline as a target.</p>
|
|
1388
|
+
*/
|
|
1389
|
+
export interface PipeTargetSageMakerPipelineParameters {
|
|
1390
|
+
/**
|
|
1391
|
+
* <p>List of Parameter names and values for SageMaker Model Building Pipeline execution.</p>
|
|
1392
|
+
*/
|
|
1393
|
+
PipelineParameterList?: SageMakerPipelineParameter[];
|
|
1394
|
+
}
|
|
1395
|
+
/**
|
|
1396
|
+
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
1397
|
+
*/
|
|
1398
|
+
export interface PipeTargetSqsQueueParameters {
|
|
1399
|
+
/**
|
|
1400
|
+
* <p>The FIFO message group ID to use as the target.</p>
|
|
1401
|
+
*/
|
|
1402
|
+
MessageGroupId?: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* <p>This parameter applies only to FIFO (first-in-first-out) queues.</p>
|
|
1405
|
+
* <p>The token used for deduplication of sent messages.</p>
|
|
1406
|
+
*/
|
|
1407
|
+
MessageDeduplicationId?: string;
|
|
1408
|
+
}
|
|
1409
|
+
/**
|
|
1410
|
+
* <p>The parameters for using a Step Functions state machine as a target.</p>
|
|
1411
|
+
*/
|
|
1412
|
+
export interface PipeTargetStateMachineParameters {
|
|
1413
|
+
/**
|
|
1414
|
+
* <p>Specify whether to wait for the state machine to finish or not.</p>
|
|
1415
|
+
*/
|
|
1416
|
+
InvocationType?: PipeTargetInvocationType | string;
|
|
1417
|
+
}
|
|
1418
|
+
/**
|
|
1419
|
+
* <p>The parameters required to set up a target for your pipe.</p>
|
|
1420
|
+
*/
|
|
1421
|
+
export interface PipeTargetParameters {
|
|
1422
|
+
/**
|
|
1423
|
+
* <p>Valid JSON text passed to the target. In this case, nothing from the event itself is
|
|
1424
|
+
* passed to the target. For more information, see <a href="http://www.rfc-editor.org/rfc/rfc7159.txt">The JavaScript Object Notation (JSON) Data
|
|
1425
|
+
* Interchange Format</a>.</p>
|
|
1426
|
+
*/
|
|
1427
|
+
InputTemplate?: string;
|
|
1428
|
+
/**
|
|
1429
|
+
* <p>The parameters for using a Lambda function as a target.</p>
|
|
1430
|
+
*/
|
|
1431
|
+
LambdaFunctionParameters?: PipeTargetLambdaFunctionParameters;
|
|
1432
|
+
/**
|
|
1433
|
+
* <p>The parameters for using a Step Functions state machine as a target.</p>
|
|
1434
|
+
*/
|
|
1435
|
+
StepFunctionStateMachineParameters?: PipeTargetStateMachineParameters;
|
|
1436
|
+
/**
|
|
1437
|
+
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
1438
|
+
*/
|
|
1439
|
+
KinesisStreamParameters?: PipeTargetKinesisStreamParameters;
|
|
1440
|
+
/**
|
|
1441
|
+
* <p>The parameters for using an Amazon ECS task as a target.</p>
|
|
1442
|
+
*/
|
|
1443
|
+
EcsTaskParameters?: PipeTargetEcsTaskParameters;
|
|
1444
|
+
/**
|
|
1445
|
+
* <p>The parameters for using an Batch job as a target.</p>
|
|
1446
|
+
*/
|
|
1447
|
+
BatchJobParameters?: PipeTargetBatchJobParameters;
|
|
1448
|
+
/**
|
|
1449
|
+
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
1450
|
+
*/
|
|
1451
|
+
SqsQueueParameters?: PipeTargetSqsQueueParameters;
|
|
1452
|
+
/**
|
|
1453
|
+
* <p>These are custom parameter to be used when the target is an API Gateway REST APIs or
|
|
1454
|
+
* EventBridge ApiDestinations.</p>
|
|
1455
|
+
*/
|
|
1456
|
+
HttpParameters?: PipeTargetHttpParameters;
|
|
1457
|
+
/**
|
|
1458
|
+
* <p>These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the
|
|
1459
|
+
* Amazon Redshift Data API ExecuteStatement.</p>
|
|
1460
|
+
*/
|
|
1461
|
+
RedshiftDataParameters?: PipeTargetRedshiftDataParameters;
|
|
1462
|
+
/**
|
|
1463
|
+
* <p>The parameters for using a SageMaker pipeline as a target.</p>
|
|
1464
|
+
*/
|
|
1465
|
+
SageMakerPipelineParameters?: PipeTargetSageMakerPipelineParameters;
|
|
1466
|
+
/**
|
|
1467
|
+
* <p>The parameters for using an EventBridge event bus as a target.</p>
|
|
1468
|
+
*/
|
|
1469
|
+
EventBridgeEventBusParameters?: PipeTargetEventBridgeEventBusParameters;
|
|
1470
|
+
/**
|
|
1471
|
+
* <p>The parameters for using an CloudWatch Logs log stream as a target.</p>
|
|
1472
|
+
*/
|
|
1473
|
+
CloudWatchLogsParameters?: PipeTargetCloudWatchLogsParameters;
|
|
1474
|
+
}
|
|
1475
|
+
export interface CreatePipeRequest {
|
|
1476
|
+
/**
|
|
1477
|
+
* <p>The name of the pipe.</p>
|
|
1478
|
+
*/
|
|
1479
|
+
Name: string | undefined;
|
|
1480
|
+
/**
|
|
1481
|
+
* <p>A description of the pipe.</p>
|
|
1482
|
+
*/
|
|
1483
|
+
Description?: string;
|
|
1484
|
+
/**
|
|
1485
|
+
* <p>The state the pipe should be in.</p>
|
|
1486
|
+
*/
|
|
1487
|
+
DesiredState?: RequestedPipeState | string;
|
|
1488
|
+
/**
|
|
1489
|
+
* <p>The ARN of the source resource.</p>
|
|
1490
|
+
*/
|
|
1491
|
+
Source: string | undefined;
|
|
1492
|
+
/**
|
|
1493
|
+
* <p>The parameters required to set up a source for your pipe.</p>
|
|
1494
|
+
*/
|
|
1495
|
+
SourceParameters?: PipeSourceParameters;
|
|
1496
|
+
/**
|
|
1497
|
+
* <p>The ARN of the enrichment resource.</p>
|
|
1498
|
+
*/
|
|
1499
|
+
Enrichment?: string;
|
|
1500
|
+
/**
|
|
1501
|
+
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
1502
|
+
*/
|
|
1503
|
+
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
1504
|
+
/**
|
|
1505
|
+
* <p>The ARN of the target resource.</p>
|
|
1506
|
+
*/
|
|
1507
|
+
Target: string | undefined;
|
|
1508
|
+
/**
|
|
1509
|
+
* <p>The parameters required to set up a target for your pipe.</p>
|
|
1510
|
+
*/
|
|
1511
|
+
TargetParameters?: PipeTargetParameters;
|
|
1512
|
+
/**
|
|
1513
|
+
* <p>The ARN of the role that allows the pipe to send data to the target.</p>
|
|
1514
|
+
*/
|
|
1515
|
+
RoleArn: string | undefined;
|
|
1516
|
+
/**
|
|
1517
|
+
* <p>The list of key-value pairs to associate with the pipe.</p>
|
|
1518
|
+
*/
|
|
1519
|
+
Tags?: Record<string, string>;
|
|
1520
|
+
}
|
|
1521
|
+
export declare enum PipeState {
|
|
1522
|
+
CREATE_FAILED = "CREATE_FAILED",
|
|
1523
|
+
CREATING = "CREATING",
|
|
1524
|
+
DELETING = "DELETING",
|
|
1525
|
+
RUNNING = "RUNNING",
|
|
1526
|
+
STARTING = "STARTING",
|
|
1527
|
+
START_FAILED = "START_FAILED",
|
|
1528
|
+
STOPPED = "STOPPED",
|
|
1529
|
+
STOPPING = "STOPPING",
|
|
1530
|
+
STOP_FAILED = "STOP_FAILED",
|
|
1531
|
+
UPDATE_FAILED = "UPDATE_FAILED",
|
|
1532
|
+
UPDATING = "UPDATING"
|
|
1533
|
+
}
|
|
1534
|
+
export interface CreatePipeResponse {
|
|
1535
|
+
/**
|
|
1536
|
+
* <p>The ARN of the pipe.</p>
|
|
1537
|
+
*/
|
|
1538
|
+
Arn?: string;
|
|
1539
|
+
/**
|
|
1540
|
+
* <p>The name of the pipe.</p>
|
|
1541
|
+
*/
|
|
1542
|
+
Name?: string;
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>The state the pipe should be in.</p>
|
|
1545
|
+
*/
|
|
1546
|
+
DesiredState?: RequestedPipeState | string;
|
|
1547
|
+
/**
|
|
1548
|
+
* <p>The state the pipe is in.</p>
|
|
1549
|
+
*/
|
|
1550
|
+
CurrentState?: PipeState | string;
|
|
1551
|
+
/**
|
|
1552
|
+
* <p>The time the pipe was created.</p>
|
|
1553
|
+
*/
|
|
1554
|
+
CreationTime?: Date;
|
|
1555
|
+
/**
|
|
1556
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
1557
|
+
*/
|
|
1558
|
+
LastModifiedTime?: Date;
|
|
1559
|
+
}
|
|
1560
|
+
/**
|
|
1561
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
1562
|
+
*/
|
|
1563
|
+
export declare class InternalException extends __BaseException {
|
|
1564
|
+
readonly name: "InternalException";
|
|
1565
|
+
readonly $fault: "server";
|
|
1566
|
+
/**
|
|
1567
|
+
* <p>The number of seconds to wait before retrying the action that caused the exception.</p>
|
|
1568
|
+
*/
|
|
1569
|
+
retryAfterSeconds?: number;
|
|
1570
|
+
/**
|
|
1571
|
+
* @internal
|
|
1572
|
+
*/
|
|
1573
|
+
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
1574
|
+
}
|
|
1575
|
+
/**
|
|
1576
|
+
* <p>An entity that you specified does not exist.</p>
|
|
1577
|
+
*/
|
|
1578
|
+
export declare class NotFoundException extends __BaseException {
|
|
1579
|
+
readonly name: "NotFoundException";
|
|
1580
|
+
readonly $fault: "client";
|
|
1581
|
+
/**
|
|
1582
|
+
* @internal
|
|
1583
|
+
*/
|
|
1584
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1585
|
+
}
|
|
1586
|
+
/**
|
|
1587
|
+
* <p>A quota has been exceeded.</p>
|
|
1588
|
+
*/
|
|
1589
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1590
|
+
readonly name: "ServiceQuotaExceededException";
|
|
1591
|
+
readonly $fault: "client";
|
|
1592
|
+
/**
|
|
1593
|
+
* <p>The ID of the resource that caused the exception.</p>
|
|
1594
|
+
*/
|
|
1595
|
+
resourceId: string | undefined;
|
|
1596
|
+
/**
|
|
1597
|
+
* <p>The type of resource that caused the exception.</p>
|
|
1598
|
+
*/
|
|
1599
|
+
resourceType: string | undefined;
|
|
1600
|
+
/**
|
|
1601
|
+
* <p>The identifier of the service that caused the exception.</p>
|
|
1602
|
+
*/
|
|
1603
|
+
serviceCode: string | undefined;
|
|
1604
|
+
/**
|
|
1605
|
+
* <p>The identifier of the quota that caused the exception.</p>
|
|
1606
|
+
*/
|
|
1607
|
+
quotaCode: string | undefined;
|
|
1608
|
+
/**
|
|
1609
|
+
* @internal
|
|
1610
|
+
*/
|
|
1611
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1612
|
+
}
|
|
1613
|
+
/**
|
|
1614
|
+
* <p>An action was throttled.</p>
|
|
1615
|
+
*/
|
|
1616
|
+
export declare class ThrottlingException extends __BaseException {
|
|
1617
|
+
readonly name: "ThrottlingException";
|
|
1618
|
+
readonly $fault: "client";
|
|
1619
|
+
/**
|
|
1620
|
+
* <p>The identifier of the service that caused the exception.</p>
|
|
1621
|
+
*/
|
|
1622
|
+
serviceCode?: string;
|
|
1623
|
+
/**
|
|
1624
|
+
* <p>The identifier of the quota that caused the exception.</p>
|
|
1625
|
+
*/
|
|
1626
|
+
quotaCode?: string;
|
|
1627
|
+
/**
|
|
1628
|
+
* <p>The number of seconds to wait before retrying the action that caused the exception.</p>
|
|
1629
|
+
*/
|
|
1630
|
+
retryAfterSeconds?: number;
|
|
1631
|
+
/**
|
|
1632
|
+
* @internal
|
|
1633
|
+
*/
|
|
1634
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
1635
|
+
}
|
|
1636
|
+
/**
|
|
1637
|
+
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
1638
|
+
*/
|
|
1639
|
+
export interface ValidationExceptionField {
|
|
1640
|
+
/**
|
|
1641
|
+
* <p>The name of the exception.</p>
|
|
1642
|
+
*/
|
|
1643
|
+
name: string | undefined;
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>The message of the exception.</p>
|
|
1646
|
+
*/
|
|
1647
|
+
message: string | undefined;
|
|
1648
|
+
}
|
|
1649
|
+
/**
|
|
1650
|
+
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
1651
|
+
*/
|
|
1652
|
+
export declare class ValidationException extends __BaseException {
|
|
1653
|
+
readonly name: "ValidationException";
|
|
1654
|
+
readonly $fault: "client";
|
|
1655
|
+
/**
|
|
1656
|
+
* <p>The list of fields for which validation failed and the corresponding failure messages.</p>
|
|
1657
|
+
*/
|
|
1658
|
+
fieldList?: ValidationExceptionField[];
|
|
1659
|
+
/**
|
|
1660
|
+
* @internal
|
|
1661
|
+
*/
|
|
1662
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1663
|
+
}
|
|
1664
|
+
export interface DeletePipeRequest {
|
|
1665
|
+
/**
|
|
1666
|
+
* <p>The name of the pipe.</p>
|
|
1667
|
+
*/
|
|
1668
|
+
Name: string | undefined;
|
|
1669
|
+
}
|
|
1670
|
+
export declare enum RequestedPipeStateDescribeResponse {
|
|
1671
|
+
DELETED = "DELETED",
|
|
1672
|
+
RUNNING = "RUNNING",
|
|
1673
|
+
STOPPED = "STOPPED"
|
|
1674
|
+
}
|
|
1675
|
+
export interface DeletePipeResponse {
|
|
1676
|
+
/**
|
|
1677
|
+
* <p>The ARN of the pipe.</p>
|
|
1678
|
+
*/
|
|
1679
|
+
Arn?: string;
|
|
1680
|
+
/**
|
|
1681
|
+
* <p>The name of the pipe.</p>
|
|
1682
|
+
*/
|
|
1683
|
+
Name?: string;
|
|
1684
|
+
/**
|
|
1685
|
+
* <p>The state the pipe should be in.</p>
|
|
1686
|
+
*/
|
|
1687
|
+
DesiredState?: RequestedPipeStateDescribeResponse | string;
|
|
1688
|
+
/**
|
|
1689
|
+
* <p>The state the pipe is in.</p>
|
|
1690
|
+
*/
|
|
1691
|
+
CurrentState?: PipeState | string;
|
|
1692
|
+
/**
|
|
1693
|
+
* <p>The time the pipe was created.</p>
|
|
1694
|
+
*/
|
|
1695
|
+
CreationTime?: Date;
|
|
1696
|
+
/**
|
|
1697
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
1698
|
+
*/
|
|
1699
|
+
LastModifiedTime?: Date;
|
|
1700
|
+
}
|
|
1701
|
+
export interface DescribePipeRequest {
|
|
1702
|
+
/**
|
|
1703
|
+
* <p>The name of the pipe.</p>
|
|
1704
|
+
*/
|
|
1705
|
+
Name: string | undefined;
|
|
1706
|
+
}
|
|
1707
|
+
export interface DescribePipeResponse {
|
|
1708
|
+
/**
|
|
1709
|
+
* <p>The ARN of the pipe.</p>
|
|
1710
|
+
*/
|
|
1711
|
+
Arn?: string;
|
|
1712
|
+
/**
|
|
1713
|
+
* <p>The name of the pipe.</p>
|
|
1714
|
+
*/
|
|
1715
|
+
Name?: string;
|
|
1716
|
+
/**
|
|
1717
|
+
* <p>A description of the pipe.</p>
|
|
1718
|
+
*/
|
|
1719
|
+
Description?: string;
|
|
1720
|
+
/**
|
|
1721
|
+
* <p>The state the pipe should be in.</p>
|
|
1722
|
+
*/
|
|
1723
|
+
DesiredState?: RequestedPipeStateDescribeResponse | string;
|
|
1724
|
+
/**
|
|
1725
|
+
* <p>The state the pipe is in.</p>
|
|
1726
|
+
*/
|
|
1727
|
+
CurrentState?: PipeState | string;
|
|
1728
|
+
/**
|
|
1729
|
+
* <p>The reason the pipe is in its current state.</p>
|
|
1730
|
+
*/
|
|
1731
|
+
StateReason?: string;
|
|
1732
|
+
/**
|
|
1733
|
+
* <p>The ARN of the source resource.</p>
|
|
1734
|
+
*/
|
|
1735
|
+
Source?: string;
|
|
1736
|
+
/**
|
|
1737
|
+
* <p>The parameters required to set up a source for your pipe.</p>
|
|
1738
|
+
*/
|
|
1739
|
+
SourceParameters?: PipeSourceParameters;
|
|
1740
|
+
/**
|
|
1741
|
+
* <p>The ARN of the enrichment resource.</p>
|
|
1742
|
+
*/
|
|
1743
|
+
Enrichment?: string;
|
|
1744
|
+
/**
|
|
1745
|
+
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
1746
|
+
*/
|
|
1747
|
+
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
1748
|
+
/**
|
|
1749
|
+
* <p>The ARN of the target resource.</p>
|
|
1750
|
+
*/
|
|
1751
|
+
Target?: string;
|
|
1752
|
+
/**
|
|
1753
|
+
* <p>The parameters required to set up a target for your pipe.</p>
|
|
1754
|
+
*/
|
|
1755
|
+
TargetParameters?: PipeTargetParameters;
|
|
1756
|
+
/**
|
|
1757
|
+
* <p>The ARN of the role that allows the pipe to send data to the target.</p>
|
|
1758
|
+
*/
|
|
1759
|
+
RoleArn?: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* <p>The list of key-value pairs to associate with the pipe.</p>
|
|
1762
|
+
*/
|
|
1763
|
+
Tags?: Record<string, string>;
|
|
1764
|
+
/**
|
|
1765
|
+
* <p>The time the pipe was created.</p>
|
|
1766
|
+
*/
|
|
1767
|
+
CreationTime?: Date;
|
|
1768
|
+
/**
|
|
1769
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
1770
|
+
*/
|
|
1771
|
+
LastModifiedTime?: Date;
|
|
1772
|
+
}
|
|
1773
|
+
export interface ListPipesRequest {
|
|
1774
|
+
/**
|
|
1775
|
+
* <p>A value that will return a subset of the pipes associated with this account. For example, <code>"NamePrefix": "ABC"</code> will return
|
|
1776
|
+
* all endpoints with "ABC" in the name.</p>
|
|
1777
|
+
*/
|
|
1778
|
+
NamePrefix?: string;
|
|
1779
|
+
/**
|
|
1780
|
+
* <p>The state the pipe should be in.</p>
|
|
1781
|
+
*/
|
|
1782
|
+
DesiredState?: RequestedPipeState | string;
|
|
1783
|
+
/**
|
|
1784
|
+
* <p>The state the pipe is in.</p>
|
|
1785
|
+
*/
|
|
1786
|
+
CurrentState?: PipeState | string;
|
|
1787
|
+
/**
|
|
1788
|
+
* <p>The prefix matching the pipe source.</p>
|
|
1789
|
+
*/
|
|
1790
|
+
SourcePrefix?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* <p>The prefix matching the pipe target.</p>
|
|
1793
|
+
*/
|
|
1794
|
+
TargetPrefix?: string;
|
|
1795
|
+
/**
|
|
1796
|
+
* <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.
|
|
1797
|
+
* 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
|
|
1798
|
+
* token will return an HTTP 400 InvalidToken error.</p>
|
|
1799
|
+
*/
|
|
1800
|
+
NextToken?: string;
|
|
1801
|
+
/**
|
|
1802
|
+
* <p>The maximum number of pipes to include in the response.</p>
|
|
1803
|
+
*/
|
|
1804
|
+
Limit?: number;
|
|
1805
|
+
}
|
|
1806
|
+
/**
|
|
1807
|
+
* <p>An object that represents a pipe. Amazon EventBridgePipes connect event sources to targets and reduces the need for specialized knowledge and integration code.</p>
|
|
1808
|
+
*/
|
|
1809
|
+
export interface Pipe {
|
|
1810
|
+
/**
|
|
1811
|
+
* <p>The name of the pipe.</p>
|
|
1812
|
+
*/
|
|
1813
|
+
Name?: string;
|
|
1814
|
+
/**
|
|
1815
|
+
* <p>The ARN of the pipe.</p>
|
|
1816
|
+
*/
|
|
1817
|
+
Arn?: string;
|
|
1818
|
+
/**
|
|
1819
|
+
* <p>The state the pipe should be in.</p>
|
|
1820
|
+
*/
|
|
1821
|
+
DesiredState?: RequestedPipeState | string;
|
|
1822
|
+
/**
|
|
1823
|
+
* <p>The state the pipe is in.</p>
|
|
1824
|
+
*/
|
|
1825
|
+
CurrentState?: PipeState | string;
|
|
1826
|
+
/**
|
|
1827
|
+
* <p>The reason the pipe is in its current state.</p>
|
|
1828
|
+
*/
|
|
1829
|
+
StateReason?: string;
|
|
1830
|
+
/**
|
|
1831
|
+
* <p>The time the pipe was created.</p>
|
|
1832
|
+
*/
|
|
1833
|
+
CreationTime?: Date;
|
|
1834
|
+
/**
|
|
1835
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
1836
|
+
*/
|
|
1837
|
+
LastModifiedTime?: Date;
|
|
1838
|
+
/**
|
|
1839
|
+
* <p>The ARN of the source resource.</p>
|
|
1840
|
+
*/
|
|
1841
|
+
Source?: string;
|
|
1842
|
+
/**
|
|
1843
|
+
* <p>The ARN of the target resource.</p>
|
|
1844
|
+
*/
|
|
1845
|
+
Target?: string;
|
|
1846
|
+
/**
|
|
1847
|
+
* <p>The ARN of the enrichment resource.</p>
|
|
1848
|
+
*/
|
|
1849
|
+
Enrichment?: string;
|
|
1850
|
+
}
|
|
1851
|
+
export interface ListPipesResponse {
|
|
1852
|
+
/**
|
|
1853
|
+
* <p>The pipes returned by the call.</p>
|
|
1854
|
+
*/
|
|
1855
|
+
Pipes?: Pipe[];
|
|
1856
|
+
/**
|
|
1857
|
+
* <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.
|
|
1858
|
+
* 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
|
|
1859
|
+
* token will return an HTTP 400 InvalidToken error.</p>
|
|
1860
|
+
*/
|
|
1861
|
+
NextToken?: string;
|
|
1862
|
+
}
|
|
1863
|
+
export interface ListTagsForResourceRequest {
|
|
1864
|
+
/**
|
|
1865
|
+
* <p>The ARN of the pipe for which you want to view tags.</p>
|
|
1866
|
+
*/
|
|
1867
|
+
resourceArn: string | undefined;
|
|
1868
|
+
}
|
|
1869
|
+
export interface ListTagsForResourceResponse {
|
|
1870
|
+
/**
|
|
1871
|
+
* <p>The list of key-value pairs to associate with the pipe.</p>
|
|
1872
|
+
*/
|
|
1873
|
+
tags?: Record<string, string>;
|
|
1874
|
+
}
|
|
1875
|
+
export interface StartPipeRequest {
|
|
1876
|
+
/**
|
|
1877
|
+
* <p>The name of the pipe.</p>
|
|
1878
|
+
*/
|
|
1879
|
+
Name: string | undefined;
|
|
1880
|
+
}
|
|
1881
|
+
export interface StartPipeResponse {
|
|
1882
|
+
/**
|
|
1883
|
+
* <p>The ARN of the pipe.</p>
|
|
1884
|
+
*/
|
|
1885
|
+
Arn?: string;
|
|
1886
|
+
/**
|
|
1887
|
+
* <p>The name of the pipe.</p>
|
|
1888
|
+
*/
|
|
1889
|
+
Name?: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* <p>The state the pipe should be in.</p>
|
|
1892
|
+
*/
|
|
1893
|
+
DesiredState?: RequestedPipeState | string;
|
|
1894
|
+
/**
|
|
1895
|
+
* <p>The state the pipe is in.</p>
|
|
1896
|
+
*/
|
|
1897
|
+
CurrentState?: PipeState | string;
|
|
1898
|
+
/**
|
|
1899
|
+
* <p>The time the pipe was created.</p>
|
|
1900
|
+
*/
|
|
1901
|
+
CreationTime?: Date;
|
|
1902
|
+
/**
|
|
1903
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
1904
|
+
*/
|
|
1905
|
+
LastModifiedTime?: Date;
|
|
1906
|
+
}
|
|
1907
|
+
export interface StopPipeRequest {
|
|
1908
|
+
/**
|
|
1909
|
+
* <p>The name of the pipe.</p>
|
|
1910
|
+
*/
|
|
1911
|
+
Name: string | undefined;
|
|
1912
|
+
}
|
|
1913
|
+
export interface StopPipeResponse {
|
|
1914
|
+
/**
|
|
1915
|
+
* <p>The ARN of the pipe.</p>
|
|
1916
|
+
*/
|
|
1917
|
+
Arn?: string;
|
|
1918
|
+
/**
|
|
1919
|
+
* <p>The name of the pipe.</p>
|
|
1920
|
+
*/
|
|
1921
|
+
Name?: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* <p>The state the pipe should be in.</p>
|
|
1924
|
+
*/
|
|
1925
|
+
DesiredState?: RequestedPipeState | string;
|
|
1926
|
+
/**
|
|
1927
|
+
* <p>The state the pipe is in.</p>
|
|
1928
|
+
*/
|
|
1929
|
+
CurrentState?: PipeState | string;
|
|
1930
|
+
/**
|
|
1931
|
+
* <p>The time the pipe was created.</p>
|
|
1932
|
+
*/
|
|
1933
|
+
CreationTime?: Date;
|
|
1934
|
+
/**
|
|
1935
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
1936
|
+
*/
|
|
1937
|
+
LastModifiedTime?: Date;
|
|
1938
|
+
}
|
|
1939
|
+
/**
|
|
1940
|
+
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
1941
|
+
*/
|
|
1942
|
+
export interface UpdatePipeSourceActiveMQBrokerParameters {
|
|
1943
|
+
/**
|
|
1944
|
+
* <p>The credentials needed to access the resource.</p>
|
|
1945
|
+
*/
|
|
1946
|
+
Credentials: MQBrokerAccessCredentials | undefined;
|
|
1947
|
+
/**
|
|
1948
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
1949
|
+
*/
|
|
1950
|
+
BatchSize?: number;
|
|
1951
|
+
/**
|
|
1952
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
1953
|
+
*/
|
|
1954
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
1955
|
+
}
|
|
1956
|
+
/**
|
|
1957
|
+
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
1958
|
+
*/
|
|
1959
|
+
export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
1960
|
+
/**
|
|
1961
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
1962
|
+
*/
|
|
1963
|
+
BatchSize?: number;
|
|
1964
|
+
/**
|
|
1965
|
+
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
1966
|
+
*/
|
|
1967
|
+
DeadLetterConfig?: DeadLetterConfig;
|
|
1968
|
+
/**
|
|
1969
|
+
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
1970
|
+
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
1971
|
+
*/
|
|
1972
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | string;
|
|
1973
|
+
/**
|
|
1974
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
1975
|
+
*/
|
|
1976
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
1977
|
+
/**
|
|
1978
|
+
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
1979
|
+
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
1980
|
+
*/
|
|
1981
|
+
MaximumRecordAgeInSeconds?: number;
|
|
1982
|
+
/**
|
|
1983
|
+
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
1984
|
+
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
1985
|
+
*/
|
|
1986
|
+
MaximumRetryAttempts?: number;
|
|
1987
|
+
/**
|
|
1988
|
+
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
1989
|
+
*/
|
|
1990
|
+
ParallelizationFactor?: number;
|
|
1991
|
+
}
|
|
1992
|
+
/**
|
|
1993
|
+
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
1994
|
+
*/
|
|
1995
|
+
export interface UpdatePipeSourceKinesisStreamParameters {
|
|
1996
|
+
/**
|
|
1997
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
1998
|
+
*/
|
|
1999
|
+
BatchSize?: number;
|
|
2000
|
+
/**
|
|
2001
|
+
* <p>Define the target queue to send dead-letter queue events to.</p>
|
|
2002
|
+
*/
|
|
2003
|
+
DeadLetterConfig?: DeadLetterConfig;
|
|
2004
|
+
/**
|
|
2005
|
+
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
2006
|
+
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
2007
|
+
*/
|
|
2008
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | string;
|
|
2009
|
+
/**
|
|
2010
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
2011
|
+
*/
|
|
2012
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
2013
|
+
/**
|
|
2014
|
+
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
2015
|
+
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
2016
|
+
*/
|
|
2017
|
+
MaximumRecordAgeInSeconds?: number;
|
|
2018
|
+
/**
|
|
2019
|
+
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
2020
|
+
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
2021
|
+
*/
|
|
2022
|
+
MaximumRetryAttempts?: number;
|
|
2023
|
+
/**
|
|
2024
|
+
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
2025
|
+
*/
|
|
2026
|
+
ParallelizationFactor?: number;
|
|
2027
|
+
}
|
|
2028
|
+
/**
|
|
2029
|
+
* <p>The parameters for using an MSK stream as a source.</p>
|
|
2030
|
+
*/
|
|
2031
|
+
export interface UpdatePipeSourceManagedStreamingKafkaParameters {
|
|
2032
|
+
/**
|
|
2033
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
2034
|
+
*/
|
|
2035
|
+
BatchSize?: number;
|
|
2036
|
+
/**
|
|
2037
|
+
* <p>The credentials needed to access the resource.</p>
|
|
2038
|
+
*/
|
|
2039
|
+
Credentials?: MSKAccessCredentials;
|
|
2040
|
+
/**
|
|
2041
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
2042
|
+
*/
|
|
2043
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
2044
|
+
}
|
|
2045
|
+
/**
|
|
2046
|
+
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
2047
|
+
*/
|
|
2048
|
+
export interface UpdatePipeSourceRabbitMQBrokerParameters {
|
|
2049
|
+
/**
|
|
2050
|
+
* <p>The credentials needed to access the resource.</p>
|
|
2051
|
+
*/
|
|
2052
|
+
Credentials: MQBrokerAccessCredentials | undefined;
|
|
2053
|
+
/**
|
|
2054
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
2055
|
+
*/
|
|
2056
|
+
BatchSize?: number;
|
|
2057
|
+
/**
|
|
2058
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
2059
|
+
*/
|
|
2060
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
2061
|
+
}
|
|
2062
|
+
/**
|
|
2063
|
+
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
2064
|
+
*/
|
|
2065
|
+
export interface UpdatePipeSourceSelfManagedKafkaParameters {
|
|
2066
|
+
/**
|
|
2067
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
2068
|
+
*/
|
|
2069
|
+
BatchSize?: number;
|
|
2070
|
+
/**
|
|
2071
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
2072
|
+
*/
|
|
2073
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
2074
|
+
/**
|
|
2075
|
+
* <p>The credentials needed to access the resource.</p>
|
|
2076
|
+
*/
|
|
2077
|
+
Credentials?: SelfManagedKafkaAccessConfigurationCredentials;
|
|
2078
|
+
/**
|
|
2079
|
+
* <p>The ARN of the Secrets Manager secret used for certification.</p>
|
|
2080
|
+
*/
|
|
2081
|
+
ServerRootCaCertificate?: string;
|
|
2082
|
+
/**
|
|
2083
|
+
* <p>This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.</p>
|
|
2084
|
+
*/
|
|
2085
|
+
Vpc?: SelfManagedKafkaAccessConfigurationVpc;
|
|
2086
|
+
}
|
|
2087
|
+
/**
|
|
2088
|
+
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
2089
|
+
*/
|
|
2090
|
+
export interface UpdatePipeSourceSqsQueueParameters {
|
|
2091
|
+
/**
|
|
2092
|
+
* <p>The maximum number of records to include in each batch.</p>
|
|
2093
|
+
*/
|
|
2094
|
+
BatchSize?: number;
|
|
2095
|
+
/**
|
|
2096
|
+
* <p>The maximum length of a time to wait for events.</p>
|
|
2097
|
+
*/
|
|
2098
|
+
MaximumBatchingWindowInSeconds?: number;
|
|
2099
|
+
}
|
|
2100
|
+
/**
|
|
2101
|
+
* <p>The parameters required to set up a source for your pipe.</p>
|
|
2102
|
+
*/
|
|
2103
|
+
export interface UpdatePipeSourceParameters {
|
|
2104
|
+
/**
|
|
2105
|
+
* <p>The collection of event patterns used to filter events. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html">Events and Event
|
|
2106
|
+
* Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
|
|
2107
|
+
*/
|
|
2108
|
+
FilterCriteria?: FilterCriteria;
|
|
2109
|
+
/**
|
|
2110
|
+
* <p>The parameters for using a Kinesis stream as a source.</p>
|
|
2111
|
+
*/
|
|
2112
|
+
KinesisStreamParameters?: UpdatePipeSourceKinesisStreamParameters;
|
|
2113
|
+
/**
|
|
2114
|
+
* <p>The parameters for using a DynamoDB stream as a source.</p>
|
|
2115
|
+
*/
|
|
2116
|
+
DynamoDBStreamParameters?: UpdatePipeSourceDynamoDBStreamParameters;
|
|
2117
|
+
/**
|
|
2118
|
+
* <p>The parameters for using a Amazon SQS stream as a source.</p>
|
|
2119
|
+
*/
|
|
2120
|
+
SqsQueueParameters?: UpdatePipeSourceSqsQueueParameters;
|
|
2121
|
+
/**
|
|
2122
|
+
* <p>The parameters for using an Active MQ broker as a source.</p>
|
|
2123
|
+
*/
|
|
2124
|
+
ActiveMQBrokerParameters?: UpdatePipeSourceActiveMQBrokerParameters;
|
|
2125
|
+
/**
|
|
2126
|
+
* <p>The parameters for using a Rabbit MQ broker as a source.</p>
|
|
2127
|
+
*/
|
|
2128
|
+
RabbitMQBrokerParameters?: UpdatePipeSourceRabbitMQBrokerParameters;
|
|
2129
|
+
/**
|
|
2130
|
+
* <p>The parameters for using an MSK stream as a source.</p>
|
|
2131
|
+
*/
|
|
2132
|
+
ManagedStreamingKafkaParameters?: UpdatePipeSourceManagedStreamingKafkaParameters;
|
|
2133
|
+
/**
|
|
2134
|
+
* <p>The parameters for using a self-managed Apache Kafka stream as a source.</p>
|
|
2135
|
+
*/
|
|
2136
|
+
SelfManagedKafkaParameters?: UpdatePipeSourceSelfManagedKafkaParameters;
|
|
2137
|
+
}
|
|
2138
|
+
export interface UpdatePipeRequest {
|
|
2139
|
+
/**
|
|
2140
|
+
* <p>The name of the pipe.</p>
|
|
2141
|
+
*/
|
|
2142
|
+
Name: string | undefined;
|
|
2143
|
+
/**
|
|
2144
|
+
* <p>A description of the pipe.</p>
|
|
2145
|
+
*/
|
|
2146
|
+
Description?: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* <p>The state the pipe should be in.</p>
|
|
2149
|
+
*/
|
|
2150
|
+
DesiredState?: RequestedPipeState | string;
|
|
2151
|
+
/**
|
|
2152
|
+
* <p>The parameters required to set up a source for your pipe.</p>
|
|
2153
|
+
*/
|
|
2154
|
+
SourceParameters?: UpdatePipeSourceParameters;
|
|
2155
|
+
/**
|
|
2156
|
+
* <p>The ARN of the enrichment resource.</p>
|
|
2157
|
+
*/
|
|
2158
|
+
Enrichment?: string;
|
|
2159
|
+
/**
|
|
2160
|
+
* <p>The parameters required to set up enrichment on your pipe.</p>
|
|
2161
|
+
*/
|
|
2162
|
+
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
2163
|
+
/**
|
|
2164
|
+
* <p>The ARN of the target resource.</p>
|
|
2165
|
+
*/
|
|
2166
|
+
Target?: string;
|
|
2167
|
+
/**
|
|
2168
|
+
* <p>The parameters required to set up a target for your pipe.</p>
|
|
2169
|
+
*/
|
|
2170
|
+
TargetParameters?: PipeTargetParameters;
|
|
2171
|
+
/**
|
|
2172
|
+
* <p>The ARN of the role that allows the pipe to send data to the target.</p>
|
|
2173
|
+
*/
|
|
2174
|
+
RoleArn: string | undefined;
|
|
2175
|
+
}
|
|
2176
|
+
export interface UpdatePipeResponse {
|
|
2177
|
+
/**
|
|
2178
|
+
* <p>The ARN of the pipe.</p>
|
|
2179
|
+
*/
|
|
2180
|
+
Arn?: string;
|
|
2181
|
+
/**
|
|
2182
|
+
* <p>The name of the pipe.</p>
|
|
2183
|
+
*/
|
|
2184
|
+
Name?: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* <p>The state the pipe should be in.</p>
|
|
2187
|
+
*/
|
|
2188
|
+
DesiredState?: RequestedPipeState | string;
|
|
2189
|
+
/**
|
|
2190
|
+
* <p>The state the pipe is in.</p>
|
|
2191
|
+
*/
|
|
2192
|
+
CurrentState?: PipeState | string;
|
|
2193
|
+
/**
|
|
2194
|
+
* <p>The time the pipe was created.</p>
|
|
2195
|
+
*/
|
|
2196
|
+
CreationTime?: Date;
|
|
2197
|
+
/**
|
|
2198
|
+
* <p>When the pipe was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2199
|
+
*/
|
|
2200
|
+
LastModifiedTime?: Date;
|
|
2201
|
+
}
|
|
2202
|
+
export interface TagResourceRequest {
|
|
2203
|
+
/**
|
|
2204
|
+
* <p>The ARN of the pipe.</p>
|
|
2205
|
+
*/
|
|
2206
|
+
resourceArn: string | undefined;
|
|
2207
|
+
/**
|
|
2208
|
+
* <p>The list of key-value pairs associated with the pipe.</p>
|
|
2209
|
+
*/
|
|
2210
|
+
tags: Record<string, string> | undefined;
|
|
2211
|
+
}
|
|
2212
|
+
export interface TagResourceResponse {
|
|
2213
|
+
}
|
|
2214
|
+
export interface UntagResourceRequest {
|
|
2215
|
+
/**
|
|
2216
|
+
* <p>The ARN of the pipe.</p>
|
|
2217
|
+
*/
|
|
2218
|
+
resourceArn: string | undefined;
|
|
2219
|
+
/**
|
|
2220
|
+
* <p>The list of tag keys to remove from the pipe.</p>
|
|
2221
|
+
*/
|
|
2222
|
+
tagKeys: string[] | undefined;
|
|
2223
|
+
}
|
|
2224
|
+
export interface UntagResourceResponse {
|
|
2225
|
+
}
|
|
2226
|
+
/**
|
|
2227
|
+
* @internal
|
|
2228
|
+
*/
|
|
2229
|
+
export declare const AwsVpcConfigurationFilterSensitiveLog: (obj: AwsVpcConfiguration) => any;
|
|
2230
|
+
/**
|
|
2231
|
+
* @internal
|
|
2232
|
+
*/
|
|
2233
|
+
export declare const BatchArrayPropertiesFilterSensitiveLog: (obj: BatchArrayProperties) => any;
|
|
2234
|
+
/**
|
|
2235
|
+
* @internal
|
|
2236
|
+
*/
|
|
2237
|
+
export declare const BatchEnvironmentVariableFilterSensitiveLog: (obj: BatchEnvironmentVariable) => any;
|
|
2238
|
+
/**
|
|
2239
|
+
* @internal
|
|
2240
|
+
*/
|
|
2241
|
+
export declare const BatchResourceRequirementFilterSensitiveLog: (obj: BatchResourceRequirement) => any;
|
|
2242
|
+
/**
|
|
2243
|
+
* @internal
|
|
2244
|
+
*/
|
|
2245
|
+
export declare const BatchContainerOverridesFilterSensitiveLog: (obj: BatchContainerOverrides) => any;
|
|
2246
|
+
/**
|
|
2247
|
+
* @internal
|
|
2248
|
+
*/
|
|
2249
|
+
export declare const BatchJobDependencyFilterSensitiveLog: (obj: BatchJobDependency) => any;
|
|
2250
|
+
/**
|
|
2251
|
+
* @internal
|
|
2252
|
+
*/
|
|
2253
|
+
export declare const BatchRetryStrategyFilterSensitiveLog: (obj: BatchRetryStrategy) => any;
|
|
2254
|
+
/**
|
|
2255
|
+
* @internal
|
|
2256
|
+
*/
|
|
2257
|
+
export declare const CapacityProviderStrategyItemFilterSensitiveLog: (obj: CapacityProviderStrategyItem) => any;
|
|
2258
|
+
/**
|
|
2259
|
+
* @internal
|
|
2260
|
+
*/
|
|
2261
|
+
export declare const PipeEnrichmentHttpParametersFilterSensitiveLog: (obj: PipeEnrichmentHttpParameters) => any;
|
|
2262
|
+
/**
|
|
2263
|
+
* @internal
|
|
2264
|
+
*/
|
|
2265
|
+
export declare const PipeEnrichmentParametersFilterSensitiveLog: (obj: PipeEnrichmentParameters) => any;
|
|
2266
|
+
/**
|
|
2267
|
+
* @internal
|
|
2268
|
+
*/
|
|
2269
|
+
export declare const MQBrokerAccessCredentialsFilterSensitiveLog: (obj: MQBrokerAccessCredentials) => any;
|
|
2270
|
+
/**
|
|
2271
|
+
* @internal
|
|
2272
|
+
*/
|
|
2273
|
+
export declare const PipeSourceActiveMQBrokerParametersFilterSensitiveLog: (obj: PipeSourceActiveMQBrokerParameters) => any;
|
|
2274
|
+
/**
|
|
2275
|
+
* @internal
|
|
2276
|
+
*/
|
|
2277
|
+
export declare const DeadLetterConfigFilterSensitiveLog: (obj: DeadLetterConfig) => any;
|
|
2278
|
+
/**
|
|
2279
|
+
* @internal
|
|
2280
|
+
*/
|
|
2281
|
+
export declare const PipeSourceDynamoDBStreamParametersFilterSensitiveLog: (obj: PipeSourceDynamoDBStreamParameters) => any;
|
|
2282
|
+
/**
|
|
2283
|
+
* @internal
|
|
2284
|
+
*/
|
|
2285
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
2286
|
+
/**
|
|
2287
|
+
* @internal
|
|
2288
|
+
*/
|
|
2289
|
+
export declare const FilterCriteriaFilterSensitiveLog: (obj: FilterCriteria) => any;
|
|
2290
|
+
/**
|
|
2291
|
+
* @internal
|
|
2292
|
+
*/
|
|
2293
|
+
export declare const PipeSourceKinesisStreamParametersFilterSensitiveLog: (obj: PipeSourceKinesisStreamParameters) => any;
|
|
2294
|
+
/**
|
|
2295
|
+
* @internal
|
|
2296
|
+
*/
|
|
2297
|
+
export declare const MSKAccessCredentialsFilterSensitiveLog: (obj: MSKAccessCredentials) => any;
|
|
2298
|
+
/**
|
|
2299
|
+
* @internal
|
|
2300
|
+
*/
|
|
2301
|
+
export declare const PipeSourceManagedStreamingKafkaParametersFilterSensitiveLog: (obj: PipeSourceManagedStreamingKafkaParameters) => any;
|
|
2302
|
+
/**
|
|
2303
|
+
* @internal
|
|
2304
|
+
*/
|
|
2305
|
+
export declare const PipeSourceRabbitMQBrokerParametersFilterSensitiveLog: (obj: PipeSourceRabbitMQBrokerParameters) => any;
|
|
2306
|
+
/**
|
|
2307
|
+
* @internal
|
|
2308
|
+
*/
|
|
2309
|
+
export declare const SelfManagedKafkaAccessConfigurationCredentialsFilterSensitiveLog: (obj: SelfManagedKafkaAccessConfigurationCredentials) => any;
|
|
2310
|
+
/**
|
|
2311
|
+
* @internal
|
|
2312
|
+
*/
|
|
2313
|
+
export declare const SelfManagedKafkaAccessConfigurationVpcFilterSensitiveLog: (obj: SelfManagedKafkaAccessConfigurationVpc) => any;
|
|
2314
|
+
/**
|
|
2315
|
+
* @internal
|
|
2316
|
+
*/
|
|
2317
|
+
export declare const PipeSourceSelfManagedKafkaParametersFilterSensitiveLog: (obj: PipeSourceSelfManagedKafkaParameters) => any;
|
|
2318
|
+
/**
|
|
2319
|
+
* @internal
|
|
2320
|
+
*/
|
|
2321
|
+
export declare const PipeSourceSqsQueueParametersFilterSensitiveLog: (obj: PipeSourceSqsQueueParameters) => any;
|
|
2322
|
+
/**
|
|
2323
|
+
* @internal
|
|
2324
|
+
*/
|
|
2325
|
+
export declare const PipeSourceParametersFilterSensitiveLog: (obj: PipeSourceParameters) => any;
|
|
2326
|
+
/**
|
|
2327
|
+
* @internal
|
|
2328
|
+
*/
|
|
2329
|
+
export declare const PipeTargetBatchJobParametersFilterSensitiveLog: (obj: PipeTargetBatchJobParameters) => any;
|
|
2330
|
+
/**
|
|
2331
|
+
* @internal
|
|
2332
|
+
*/
|
|
2333
|
+
export declare const PipeTargetCloudWatchLogsParametersFilterSensitiveLog: (obj: PipeTargetCloudWatchLogsParameters) => any;
|
|
2334
|
+
/**
|
|
2335
|
+
* @internal
|
|
2336
|
+
*/
|
|
2337
|
+
export declare const NetworkConfigurationFilterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
2338
|
+
/**
|
|
2339
|
+
* @internal
|
|
2340
|
+
*/
|
|
2341
|
+
export declare const EcsEnvironmentVariableFilterSensitiveLog: (obj: EcsEnvironmentVariable) => any;
|
|
2342
|
+
/**
|
|
2343
|
+
* @internal
|
|
2344
|
+
*/
|
|
2345
|
+
export declare const EcsEnvironmentFileFilterSensitiveLog: (obj: EcsEnvironmentFile) => any;
|
|
2346
|
+
/**
|
|
2347
|
+
* @internal
|
|
2348
|
+
*/
|
|
2349
|
+
export declare const EcsResourceRequirementFilterSensitiveLog: (obj: EcsResourceRequirement) => any;
|
|
2350
|
+
/**
|
|
2351
|
+
* @internal
|
|
2352
|
+
*/
|
|
2353
|
+
export declare const EcsContainerOverrideFilterSensitiveLog: (obj: EcsContainerOverride) => any;
|
|
2354
|
+
/**
|
|
2355
|
+
* @internal
|
|
2356
|
+
*/
|
|
2357
|
+
export declare const EcsEphemeralStorageFilterSensitiveLog: (obj: EcsEphemeralStorage) => any;
|
|
2358
|
+
/**
|
|
2359
|
+
* @internal
|
|
2360
|
+
*/
|
|
2361
|
+
export declare const EcsInferenceAcceleratorOverrideFilterSensitiveLog: (obj: EcsInferenceAcceleratorOverride) => any;
|
|
2362
|
+
/**
|
|
2363
|
+
* @internal
|
|
2364
|
+
*/
|
|
2365
|
+
export declare const EcsTaskOverrideFilterSensitiveLog: (obj: EcsTaskOverride) => any;
|
|
2366
|
+
/**
|
|
2367
|
+
* @internal
|
|
2368
|
+
*/
|
|
2369
|
+
export declare const PlacementConstraintFilterSensitiveLog: (obj: PlacementConstraint) => any;
|
|
2370
|
+
/**
|
|
2371
|
+
* @internal
|
|
2372
|
+
*/
|
|
2373
|
+
export declare const PlacementStrategyFilterSensitiveLog: (obj: PlacementStrategy) => any;
|
|
2374
|
+
/**
|
|
2375
|
+
* @internal
|
|
2376
|
+
*/
|
|
2377
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
2378
|
+
/**
|
|
2379
|
+
* @internal
|
|
2380
|
+
*/
|
|
2381
|
+
export declare const PipeTargetEcsTaskParametersFilterSensitiveLog: (obj: PipeTargetEcsTaskParameters) => any;
|
|
2382
|
+
/**
|
|
2383
|
+
* @internal
|
|
2384
|
+
*/
|
|
2385
|
+
export declare const PipeTargetEventBridgeEventBusParametersFilterSensitiveLog: (obj: PipeTargetEventBridgeEventBusParameters) => any;
|
|
2386
|
+
/**
|
|
2387
|
+
* @internal
|
|
2388
|
+
*/
|
|
2389
|
+
export declare const PipeTargetHttpParametersFilterSensitiveLog: (obj: PipeTargetHttpParameters) => any;
|
|
2390
|
+
/**
|
|
2391
|
+
* @internal
|
|
2392
|
+
*/
|
|
2393
|
+
export declare const PipeTargetKinesisStreamParametersFilterSensitiveLog: (obj: PipeTargetKinesisStreamParameters) => any;
|
|
2394
|
+
/**
|
|
2395
|
+
* @internal
|
|
2396
|
+
*/
|
|
2397
|
+
export declare const PipeTargetLambdaFunctionParametersFilterSensitiveLog: (obj: PipeTargetLambdaFunctionParameters) => any;
|
|
2398
|
+
/**
|
|
2399
|
+
* @internal
|
|
2400
|
+
*/
|
|
2401
|
+
export declare const PipeTargetRedshiftDataParametersFilterSensitiveLog: (obj: PipeTargetRedshiftDataParameters) => any;
|
|
2402
|
+
/**
|
|
2403
|
+
* @internal
|
|
2404
|
+
*/
|
|
2405
|
+
export declare const SageMakerPipelineParameterFilterSensitiveLog: (obj: SageMakerPipelineParameter) => any;
|
|
2406
|
+
/**
|
|
2407
|
+
* @internal
|
|
2408
|
+
*/
|
|
2409
|
+
export declare const PipeTargetSageMakerPipelineParametersFilterSensitiveLog: (obj: PipeTargetSageMakerPipelineParameters) => any;
|
|
2410
|
+
/**
|
|
2411
|
+
* @internal
|
|
2412
|
+
*/
|
|
2413
|
+
export declare const PipeTargetSqsQueueParametersFilterSensitiveLog: (obj: PipeTargetSqsQueueParameters) => any;
|
|
2414
|
+
/**
|
|
2415
|
+
* @internal
|
|
2416
|
+
*/
|
|
2417
|
+
export declare const PipeTargetStateMachineParametersFilterSensitiveLog: (obj: PipeTargetStateMachineParameters) => any;
|
|
2418
|
+
/**
|
|
2419
|
+
* @internal
|
|
2420
|
+
*/
|
|
2421
|
+
export declare const PipeTargetParametersFilterSensitiveLog: (obj: PipeTargetParameters) => any;
|
|
2422
|
+
/**
|
|
2423
|
+
* @internal
|
|
2424
|
+
*/
|
|
2425
|
+
export declare const CreatePipeRequestFilterSensitiveLog: (obj: CreatePipeRequest) => any;
|
|
2426
|
+
/**
|
|
2427
|
+
* @internal
|
|
2428
|
+
*/
|
|
2429
|
+
export declare const CreatePipeResponseFilterSensitiveLog: (obj: CreatePipeResponse) => any;
|
|
2430
|
+
/**
|
|
2431
|
+
* @internal
|
|
2432
|
+
*/
|
|
2433
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
2434
|
+
/**
|
|
2435
|
+
* @internal
|
|
2436
|
+
*/
|
|
2437
|
+
export declare const DeletePipeRequestFilterSensitiveLog: (obj: DeletePipeRequest) => any;
|
|
2438
|
+
/**
|
|
2439
|
+
* @internal
|
|
2440
|
+
*/
|
|
2441
|
+
export declare const DeletePipeResponseFilterSensitiveLog: (obj: DeletePipeResponse) => any;
|
|
2442
|
+
/**
|
|
2443
|
+
* @internal
|
|
2444
|
+
*/
|
|
2445
|
+
export declare const DescribePipeRequestFilterSensitiveLog: (obj: DescribePipeRequest) => any;
|
|
2446
|
+
/**
|
|
2447
|
+
* @internal
|
|
2448
|
+
*/
|
|
2449
|
+
export declare const DescribePipeResponseFilterSensitiveLog: (obj: DescribePipeResponse) => any;
|
|
2450
|
+
/**
|
|
2451
|
+
* @internal
|
|
2452
|
+
*/
|
|
2453
|
+
export declare const ListPipesRequestFilterSensitiveLog: (obj: ListPipesRequest) => any;
|
|
2454
|
+
/**
|
|
2455
|
+
* @internal
|
|
2456
|
+
*/
|
|
2457
|
+
export declare const PipeFilterSensitiveLog: (obj: Pipe) => any;
|
|
2458
|
+
/**
|
|
2459
|
+
* @internal
|
|
2460
|
+
*/
|
|
2461
|
+
export declare const ListPipesResponseFilterSensitiveLog: (obj: ListPipesResponse) => any;
|
|
2462
|
+
/**
|
|
2463
|
+
* @internal
|
|
2464
|
+
*/
|
|
2465
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2466
|
+
/**
|
|
2467
|
+
* @internal
|
|
2468
|
+
*/
|
|
2469
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2470
|
+
/**
|
|
2471
|
+
* @internal
|
|
2472
|
+
*/
|
|
2473
|
+
export declare const StartPipeRequestFilterSensitiveLog: (obj: StartPipeRequest) => any;
|
|
2474
|
+
/**
|
|
2475
|
+
* @internal
|
|
2476
|
+
*/
|
|
2477
|
+
export declare const StartPipeResponseFilterSensitiveLog: (obj: StartPipeResponse) => any;
|
|
2478
|
+
/**
|
|
2479
|
+
* @internal
|
|
2480
|
+
*/
|
|
2481
|
+
export declare const StopPipeRequestFilterSensitiveLog: (obj: StopPipeRequest) => any;
|
|
2482
|
+
/**
|
|
2483
|
+
* @internal
|
|
2484
|
+
*/
|
|
2485
|
+
export declare const StopPipeResponseFilterSensitiveLog: (obj: StopPipeResponse) => any;
|
|
2486
|
+
/**
|
|
2487
|
+
* @internal
|
|
2488
|
+
*/
|
|
2489
|
+
export declare const UpdatePipeSourceActiveMQBrokerParametersFilterSensitiveLog: (obj: UpdatePipeSourceActiveMQBrokerParameters) => any;
|
|
2490
|
+
/**
|
|
2491
|
+
* @internal
|
|
2492
|
+
*/
|
|
2493
|
+
export declare const UpdatePipeSourceDynamoDBStreamParametersFilterSensitiveLog: (obj: UpdatePipeSourceDynamoDBStreamParameters) => any;
|
|
2494
|
+
/**
|
|
2495
|
+
* @internal
|
|
2496
|
+
*/
|
|
2497
|
+
export declare const UpdatePipeSourceKinesisStreamParametersFilterSensitiveLog: (obj: UpdatePipeSourceKinesisStreamParameters) => any;
|
|
2498
|
+
/**
|
|
2499
|
+
* @internal
|
|
2500
|
+
*/
|
|
2501
|
+
export declare const UpdatePipeSourceManagedStreamingKafkaParametersFilterSensitiveLog: (obj: UpdatePipeSourceManagedStreamingKafkaParameters) => any;
|
|
2502
|
+
/**
|
|
2503
|
+
* @internal
|
|
2504
|
+
*/
|
|
2505
|
+
export declare const UpdatePipeSourceRabbitMQBrokerParametersFilterSensitiveLog: (obj: UpdatePipeSourceRabbitMQBrokerParameters) => any;
|
|
2506
|
+
/**
|
|
2507
|
+
* @internal
|
|
2508
|
+
*/
|
|
2509
|
+
export declare const UpdatePipeSourceSelfManagedKafkaParametersFilterSensitiveLog: (obj: UpdatePipeSourceSelfManagedKafkaParameters) => any;
|
|
2510
|
+
/**
|
|
2511
|
+
* @internal
|
|
2512
|
+
*/
|
|
2513
|
+
export declare const UpdatePipeSourceSqsQueueParametersFilterSensitiveLog: (obj: UpdatePipeSourceSqsQueueParameters) => any;
|
|
2514
|
+
/**
|
|
2515
|
+
* @internal
|
|
2516
|
+
*/
|
|
2517
|
+
export declare const UpdatePipeSourceParametersFilterSensitiveLog: (obj: UpdatePipeSourceParameters) => any;
|
|
2518
|
+
/**
|
|
2519
|
+
* @internal
|
|
2520
|
+
*/
|
|
2521
|
+
export declare const UpdatePipeRequestFilterSensitiveLog: (obj: UpdatePipeRequest) => any;
|
|
2522
|
+
/**
|
|
2523
|
+
* @internal
|
|
2524
|
+
*/
|
|
2525
|
+
export declare const UpdatePipeResponseFilterSensitiveLog: (obj: UpdatePipeResponse) => any;
|
|
2526
|
+
/**
|
|
2527
|
+
* @internal
|
|
2528
|
+
*/
|
|
2529
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2530
|
+
/**
|
|
2531
|
+
* @internal
|
|
2532
|
+
*/
|
|
2533
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2534
|
+
/**
|
|
2535
|
+
* @internal
|
|
2536
|
+
*/
|
|
2537
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2538
|
+
/**
|
|
2539
|
+
* @internal
|
|
2540
|
+
*/
|
|
2541
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|