@pulumi/aws 5.30.0-alpha.1676319993 → 5.30.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/acmpca/certificateAuthority.d.ts +4 -4
- package/acmpca/certificateAuthority.js +1 -1
- package/alb/loadBalancer.d.ts +3 -3
- package/applicationloadbalancing/loadBalancer.d.ts +3 -3
- package/cfg/recorderStatus.d.ts +1 -1
- package/cfg/recorderStatus.js +1 -1
- package/codebuild/webhook.d.ts +1 -1
- package/codebuild/webhook.js +1 -1
- package/dms/endpoint.d.ts +30 -9
- package/dms/endpoint.js.map +1 -1
- package/dynamodb/table.d.ts +8 -2
- package/dynamodb/table.js +1 -1
- package/dynamodb/table.js.map +1 -1
- package/dynamodb/tableReplica.d.ts +6 -0
- package/dynamodb/tableReplica.js +1 -1
- package/dynamodb/tableReplica.js.map +1 -1
- package/ec2/securityGroup.d.ts +2 -0
- package/ec2/securityGroup.js +2 -0
- package/ec2/securityGroup.js.map +1 -1
- package/ec2/vpcIpamPool.d.ts +15 -3
- package/ec2/vpcIpamPool.js +2 -0
- package/ec2/vpcIpamPool.js.map +1 -1
- package/ec2/vpcIpamPoolCidr.d.ts +24 -4
- package/ec2/vpcIpamPoolCidr.js +5 -1
- package/ec2/vpcIpamPoolCidr.js.map +1 -1
- package/ec2/vpcIpamPoolCidrAllocation.d.ts +3 -3
- package/elasticloadbalancingv2/loadBalancer.d.ts +3 -3
- package/evidently/index.d.ts +3 -0
- package/evidently/index.js +6 -1
- package/evidently/index.js.map +1 -1
- package/evidently/launch.d.ts +462 -0
- package/evidently/launch.js +339 -0
- package/evidently/launch.js.map +1 -0
- package/iam/serverCertificate.d.ts +1 -1
- package/lambda/eventSourceMapping.d.ts +3 -3
- package/lambda/function.d.ts +36 -12
- package/lambda/function.js +4 -0
- package/lambda/function.js.map +1 -1
- package/lambda/getFunction.d.ts +1 -1
- package/lb/loadBalancer.d.ts +3 -3
- package/lightsail/bucketAccessKey.d.ts +91 -0
- package/lightsail/bucketAccessKey.js +71 -0
- package/lightsail/bucketAccessKey.js.map +1 -0
- package/lightsail/index.d.ts +3 -0
- package/lightsail/index.js +6 -1
- package/lightsail/index.js.map +1 -1
- package/medialive/channel.d.ts +2 -2
- package/medialive/channel.js +2 -2
- package/networkmanager/coreNetwork.d.ts +73 -12
- package/networkmanager/coreNetwork.js +43 -8
- package/networkmanager/coreNetwork.js.map +1 -1
- package/networkmanager/coreNetworkPolicyAttachment.d.ts +137 -0
- package/networkmanager/coreNetworkPolicyAttachment.js +128 -0
- package/networkmanager/coreNetworkPolicyAttachment.js.map +1 -0
- package/networkmanager/index.d.ts +3 -0
- package/networkmanager/index.js +6 -1
- package/networkmanager/index.js.map +1 -1
- package/opsworks/permission.d.ts +1 -1
- package/opsworks/permission.js +3 -0
- package/opsworks/permission.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/getCluster.d.ts +9 -0
- package/rds/getCluster.js.map +1 -1
- package/types/input.d.ts +114 -4
- package/types/output.d.ts +114 -4
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Launch = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a CloudWatch Evidently Launch resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### Basic
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
*
|
|
18
|
+
* const example = new aws.evidently.Launch("example", {
|
|
19
|
+
* project: aws_evidently_project.example.name,
|
|
20
|
+
* groups: [{
|
|
21
|
+
* feature: aws_evidently_feature.example.name,
|
|
22
|
+
* name: "Variation1",
|
|
23
|
+
* variation: "Variation1",
|
|
24
|
+
* }],
|
|
25
|
+
* scheduledSplitsConfig: {
|
|
26
|
+
* steps: [{
|
|
27
|
+
* groupWeights: {
|
|
28
|
+
* Variation1: 0,
|
|
29
|
+
* },
|
|
30
|
+
* startTime: "2024-01-07 01:43:59+00:00",
|
|
31
|
+
* }],
|
|
32
|
+
* },
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
* ### With description
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as aws from "@pulumi/aws";
|
|
40
|
+
*
|
|
41
|
+
* const example = new aws.evidently.Launch("example", {
|
|
42
|
+
* project: aws_evidently_project.example.name,
|
|
43
|
+
* description: "example description",
|
|
44
|
+
* groups: [{
|
|
45
|
+
* feature: aws_evidently_feature.example.name,
|
|
46
|
+
* name: "Variation1",
|
|
47
|
+
* variation: "Variation1",
|
|
48
|
+
* }],
|
|
49
|
+
* scheduledSplitsConfig: {
|
|
50
|
+
* steps: [{
|
|
51
|
+
* groupWeights: {
|
|
52
|
+
* Variation1: 0,
|
|
53
|
+
* },
|
|
54
|
+
* startTime: "2024-01-07 01:43:59+00:00",
|
|
55
|
+
* }],
|
|
56
|
+
* },
|
|
57
|
+
* });
|
|
58
|
+
* ```
|
|
59
|
+
* ### With multiple groups
|
|
60
|
+
*
|
|
61
|
+
* ```typescript
|
|
62
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
63
|
+
* import * as aws from "@pulumi/aws";
|
|
64
|
+
*
|
|
65
|
+
* const example = new aws.evidently.Launch("example", {
|
|
66
|
+
* project: aws_evidently_project.example.name,
|
|
67
|
+
* groups: [
|
|
68
|
+
* {
|
|
69
|
+
* feature: aws_evidently_feature.example.name,
|
|
70
|
+
* name: "Variation1",
|
|
71
|
+
* variation: "Variation1",
|
|
72
|
+
* description: "first-group",
|
|
73
|
+
* },
|
|
74
|
+
* {
|
|
75
|
+
* feature: aws_evidently_feature.example.name,
|
|
76
|
+
* name: "Variation2",
|
|
77
|
+
* variation: "Variation2",
|
|
78
|
+
* description: "second-group",
|
|
79
|
+
* },
|
|
80
|
+
* ],
|
|
81
|
+
* scheduledSplitsConfig: {
|
|
82
|
+
* steps: [{
|
|
83
|
+
* groupWeights: {
|
|
84
|
+
* Variation1: 0,
|
|
85
|
+
* Variation2: 0,
|
|
86
|
+
* },
|
|
87
|
+
* startTime: "2024-01-07 01:43:59+00:00",
|
|
88
|
+
* }],
|
|
89
|
+
* },
|
|
90
|
+
* });
|
|
91
|
+
* ```
|
|
92
|
+
* ### With metricMonitors
|
|
93
|
+
*
|
|
94
|
+
* ```typescript
|
|
95
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
96
|
+
* import * as aws from "@pulumi/aws";
|
|
97
|
+
*
|
|
98
|
+
* const example = new aws.evidently.Launch("example", {
|
|
99
|
+
* project: aws_evidently_project.example.name,
|
|
100
|
+
* groups: [{
|
|
101
|
+
* feature: aws_evidently_feature.example.name,
|
|
102
|
+
* name: "Variation1",
|
|
103
|
+
* variation: "Variation1",
|
|
104
|
+
* }],
|
|
105
|
+
* metricMonitors: [
|
|
106
|
+
* {
|
|
107
|
+
* metricDefinition: {
|
|
108
|
+
* entityIdKey: "entity_id_key1",
|
|
109
|
+
* eventPattern: "{\"Price\":[{\"numeric\":[\">\",11,\"<=\",22]}]}",
|
|
110
|
+
* name: "name1",
|
|
111
|
+
* unitLabel: "unit_label1",
|
|
112
|
+
* valueKey: "value_key1",
|
|
113
|
+
* },
|
|
114
|
+
* },
|
|
115
|
+
* {
|
|
116
|
+
* metricDefinition: {
|
|
117
|
+
* entityIdKey: "entity_id_key2",
|
|
118
|
+
* eventPattern: "{\"Price\":[{\"numeric\":[\">\",9,\"<=\",19]}]}",
|
|
119
|
+
* name: "name2",
|
|
120
|
+
* unitLabel: "unit_label2",
|
|
121
|
+
* valueKey: "value_key2",
|
|
122
|
+
* },
|
|
123
|
+
* },
|
|
124
|
+
* ],
|
|
125
|
+
* scheduledSplitsConfig: {
|
|
126
|
+
* steps: [{
|
|
127
|
+
* groupWeights: {
|
|
128
|
+
* Variation1: 0,
|
|
129
|
+
* },
|
|
130
|
+
* startTime: "2024-01-07 01:43:59+00:00",
|
|
131
|
+
* }],
|
|
132
|
+
* },
|
|
133
|
+
* });
|
|
134
|
+
* ```
|
|
135
|
+
* ### With randomizationSalt
|
|
136
|
+
*
|
|
137
|
+
* ```typescript
|
|
138
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
139
|
+
* import * as aws from "@pulumi/aws";
|
|
140
|
+
*
|
|
141
|
+
* const example = new aws.evidently.Launch("example", {
|
|
142
|
+
* project: aws_evidently_project.example.name,
|
|
143
|
+
* randomizationSalt: "example randomization salt",
|
|
144
|
+
* groups: [{
|
|
145
|
+
* feature: aws_evidently_feature.example.name,
|
|
146
|
+
* name: "Variation1",
|
|
147
|
+
* variation: "Variation1",
|
|
148
|
+
* }],
|
|
149
|
+
* scheduledSplitsConfig: {
|
|
150
|
+
* steps: [{
|
|
151
|
+
* groupWeights: {
|
|
152
|
+
* Variation1: 0,
|
|
153
|
+
* },
|
|
154
|
+
* startTime: "2024-01-07 01:43:59+00:00",
|
|
155
|
+
* }],
|
|
156
|
+
* },
|
|
157
|
+
* });
|
|
158
|
+
* ```
|
|
159
|
+
* ### With multiple steps
|
|
160
|
+
*
|
|
161
|
+
* ```typescript
|
|
162
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
163
|
+
* import * as aws from "@pulumi/aws";
|
|
164
|
+
*
|
|
165
|
+
* const example = new aws.evidently.Launch("example", {
|
|
166
|
+
* project: aws_evidently_project.example.name,
|
|
167
|
+
* groups: [
|
|
168
|
+
* {
|
|
169
|
+
* feature: aws_evidently_feature.example.name,
|
|
170
|
+
* name: "Variation1",
|
|
171
|
+
* variation: "Variation1",
|
|
172
|
+
* },
|
|
173
|
+
* {
|
|
174
|
+
* feature: aws_evidently_feature.example.name,
|
|
175
|
+
* name: "Variation2",
|
|
176
|
+
* variation: "Variation2",
|
|
177
|
+
* },
|
|
178
|
+
* ],
|
|
179
|
+
* scheduledSplitsConfig: {
|
|
180
|
+
* steps: [
|
|
181
|
+
* {
|
|
182
|
+
* groupWeights: {
|
|
183
|
+
* Variation1: 15,
|
|
184
|
+
* Variation2: 10,
|
|
185
|
+
* },
|
|
186
|
+
* startTime: "2024-01-07 01:43:59+00:00",
|
|
187
|
+
* },
|
|
188
|
+
* {
|
|
189
|
+
* groupWeights: {
|
|
190
|
+
* Variation1: 20,
|
|
191
|
+
* Variation2: 25,
|
|
192
|
+
* },
|
|
193
|
+
* startTime: "2024-01-08 01:43:59+00:00",
|
|
194
|
+
* },
|
|
195
|
+
* ],
|
|
196
|
+
* },
|
|
197
|
+
* });
|
|
198
|
+
* ```
|
|
199
|
+
* ### With segment overrides
|
|
200
|
+
*
|
|
201
|
+
* ```typescript
|
|
202
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
203
|
+
* import * as aws from "@pulumi/aws";
|
|
204
|
+
*
|
|
205
|
+
* const example = new aws.evidently.Launch("example", {
|
|
206
|
+
* project: aws_evidently_project.example.name,
|
|
207
|
+
* groups: [
|
|
208
|
+
* {
|
|
209
|
+
* feature: aws_evidently_feature.example.name,
|
|
210
|
+
* name: "Variation1",
|
|
211
|
+
* variation: "Variation1",
|
|
212
|
+
* },
|
|
213
|
+
* {
|
|
214
|
+
* feature: aws_evidently_feature.example.name,
|
|
215
|
+
* name: "Variation2",
|
|
216
|
+
* variation: "Variation2",
|
|
217
|
+
* },
|
|
218
|
+
* ],
|
|
219
|
+
* scheduledSplitsConfig: {
|
|
220
|
+
* steps: [{
|
|
221
|
+
* groupWeights: {
|
|
222
|
+
* Variation1: 0,
|
|
223
|
+
* Variation2: 0,
|
|
224
|
+
* },
|
|
225
|
+
* segmentOverrides: [
|
|
226
|
+
* {
|
|
227
|
+
* evaluationOrder: 1,
|
|
228
|
+
* segment: aws_evidently_segment.example.name,
|
|
229
|
+
* weights: {
|
|
230
|
+
* Variation2: 10000,
|
|
231
|
+
* },
|
|
232
|
+
* },
|
|
233
|
+
* {
|
|
234
|
+
* evaluationOrder: 2,
|
|
235
|
+
* segment: aws_evidently_segment.example.name,
|
|
236
|
+
* weights: {
|
|
237
|
+
* Variation1: 40000,
|
|
238
|
+
* Variation2: 30000,
|
|
239
|
+
* },
|
|
240
|
+
* },
|
|
241
|
+
* ],
|
|
242
|
+
* startTime: "2024-01-08 01:43:59+00:00",
|
|
243
|
+
* }],
|
|
244
|
+
* },
|
|
245
|
+
* });
|
|
246
|
+
* ```
|
|
247
|
+
*
|
|
248
|
+
* ## Import
|
|
249
|
+
*
|
|
250
|
+
* CloudWatch Evidently Launch can be imported using the `name` of the launch and `name` or `arn` of the hosting CloudWatch Evidently Project separated by a `:`, e.g. with the `name` of the launch and `arn` of the project,
|
|
251
|
+
*
|
|
252
|
+
* ```sh
|
|
253
|
+
* $ pulumi import aws:evidently/launch:Launch example exampleLaunchName:arn:aws:evidently:us-east-1:123456789012:project/exampleProjectName
|
|
254
|
+
* ```
|
|
255
|
+
*
|
|
256
|
+
* e.g. with the `name` of the launch and `name` of the project,
|
|
257
|
+
*
|
|
258
|
+
* ```sh
|
|
259
|
+
* $ pulumi import aws:evidently/launch:Launch example exampleLaunchName:exampleProjectName
|
|
260
|
+
* ```
|
|
261
|
+
*/
|
|
262
|
+
class Launch extends pulumi.CustomResource {
|
|
263
|
+
/**
|
|
264
|
+
* Get an existing Launch resource's state with the given name, ID, and optional extra
|
|
265
|
+
* properties used to qualify the lookup.
|
|
266
|
+
*
|
|
267
|
+
* @param name The _unique_ name of the resulting resource.
|
|
268
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
269
|
+
* @param state Any extra arguments used during the lookup.
|
|
270
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
271
|
+
*/
|
|
272
|
+
static get(name, id, state, opts) {
|
|
273
|
+
return new Launch(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* Returns true if the given object is an instance of Launch. This is designed to work even
|
|
277
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
278
|
+
*/
|
|
279
|
+
static isInstance(obj) {
|
|
280
|
+
if (obj === undefined || obj === null) {
|
|
281
|
+
return false;
|
|
282
|
+
}
|
|
283
|
+
return obj['__pulumiType'] === Launch.__pulumiType;
|
|
284
|
+
}
|
|
285
|
+
constructor(name, argsOrState, opts) {
|
|
286
|
+
let resourceInputs = {};
|
|
287
|
+
opts = opts || {};
|
|
288
|
+
if (opts.id) {
|
|
289
|
+
const state = argsOrState;
|
|
290
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
291
|
+
resourceInputs["createdTime"] = state ? state.createdTime : undefined;
|
|
292
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
293
|
+
resourceInputs["executions"] = state ? state.executions : undefined;
|
|
294
|
+
resourceInputs["groups"] = state ? state.groups : undefined;
|
|
295
|
+
resourceInputs["lastUpdatedTime"] = state ? state.lastUpdatedTime : undefined;
|
|
296
|
+
resourceInputs["metricMonitors"] = state ? state.metricMonitors : undefined;
|
|
297
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
298
|
+
resourceInputs["project"] = state ? state.project : undefined;
|
|
299
|
+
resourceInputs["randomizationSalt"] = state ? state.randomizationSalt : undefined;
|
|
300
|
+
resourceInputs["scheduledSplitsConfig"] = state ? state.scheduledSplitsConfig : undefined;
|
|
301
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
302
|
+
resourceInputs["statusReason"] = state ? state.statusReason : undefined;
|
|
303
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
304
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
305
|
+
resourceInputs["type"] = state ? state.type : undefined;
|
|
306
|
+
}
|
|
307
|
+
else {
|
|
308
|
+
const args = argsOrState;
|
|
309
|
+
if ((!args || args.groups === undefined) && !opts.urn) {
|
|
310
|
+
throw new Error("Missing required property 'groups'");
|
|
311
|
+
}
|
|
312
|
+
if ((!args || args.project === undefined) && !opts.urn) {
|
|
313
|
+
throw new Error("Missing required property 'project'");
|
|
314
|
+
}
|
|
315
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
316
|
+
resourceInputs["groups"] = args ? args.groups : undefined;
|
|
317
|
+
resourceInputs["metricMonitors"] = args ? args.metricMonitors : undefined;
|
|
318
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
319
|
+
resourceInputs["project"] = args ? args.project : undefined;
|
|
320
|
+
resourceInputs["randomizationSalt"] = args ? args.randomizationSalt : undefined;
|
|
321
|
+
resourceInputs["scheduledSplitsConfig"] = args ? args.scheduledSplitsConfig : undefined;
|
|
322
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
323
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
324
|
+
resourceInputs["createdTime"] = undefined /*out*/;
|
|
325
|
+
resourceInputs["executions"] = undefined /*out*/;
|
|
326
|
+
resourceInputs["lastUpdatedTime"] = undefined /*out*/;
|
|
327
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
328
|
+
resourceInputs["statusReason"] = undefined /*out*/;
|
|
329
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
330
|
+
resourceInputs["type"] = undefined /*out*/;
|
|
331
|
+
}
|
|
332
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
333
|
+
super(Launch.__pulumiType, name, resourceInputs, opts);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
exports.Launch = Launch;
|
|
337
|
+
/** @internal */
|
|
338
|
+
Launch.__pulumiType = 'aws:evidently/launch:Launch';
|
|
339
|
+
//# sourceMappingURL=launch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"launch.js","sourceRoot":"","sources":["../../evidently/launch.ts"],"names":[],"mappings":"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"}
|
|
@@ -132,7 +132,7 @@ export declare class ServerCertificate extends pulumi.CustomResource {
|
|
|
132
132
|
* Creates a unique name beginning with the specified
|
|
133
133
|
* prefix. Conflicts with `name`.
|
|
134
134
|
*/
|
|
135
|
-
readonly namePrefix: pulumi.Output<string
|
|
135
|
+
readonly namePrefix: pulumi.Output<string>;
|
|
136
136
|
/**
|
|
137
137
|
* The IAM path for the server certificate. If it is not
|
|
138
138
|
* included, it defaults to a slash (/). If this certificate is for use with
|
|
@@ -267,7 +267,7 @@ export declare class EventSourceMapping extends pulumi.CustomResource {
|
|
|
267
267
|
*/
|
|
268
268
|
readonly sourceAccessConfigurations: pulumi.Output<outputs.lambda.EventSourceMappingSourceAccessConfiguration[] | undefined>;
|
|
269
269
|
/**
|
|
270
|
-
* The position in the stream where AWS Lambda should start reading. Must be one of `AT_TIMESTAMP` (Kinesis only), `LATEST` or `TRIM_HORIZON` if getting events from Kinesis, DynamoDB or
|
|
270
|
+
* The position in the stream where AWS Lambda should start reading. Must be one of `AT_TIMESTAMP` (Kinesis only), `LATEST` or `TRIM_HORIZON` if getting events from Kinesis, DynamoDB, MSK or Self Managed Apache Kafka. Must not be provided if getting events from SQS. More information about these positions can be found in the [AWS DynamoDB Streams API Reference](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_GetShardIterator.html) and [AWS Kinesis API Reference](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType).
|
|
271
271
|
*/
|
|
272
272
|
readonly startingPosition: pulumi.Output<string | undefined>;
|
|
273
273
|
/**
|
|
@@ -392,7 +392,7 @@ export interface EventSourceMappingState {
|
|
|
392
392
|
*/
|
|
393
393
|
sourceAccessConfigurations?: pulumi.Input<pulumi.Input<inputs.lambda.EventSourceMappingSourceAccessConfiguration>[]>;
|
|
394
394
|
/**
|
|
395
|
-
* The position in the stream where AWS Lambda should start reading. Must be one of `AT_TIMESTAMP` (Kinesis only), `LATEST` or `TRIM_HORIZON` if getting events from Kinesis, DynamoDB or
|
|
395
|
+
* The position in the stream where AWS Lambda should start reading. Must be one of `AT_TIMESTAMP` (Kinesis only), `LATEST` or `TRIM_HORIZON` if getting events from Kinesis, DynamoDB, MSK or Self Managed Apache Kafka. Must not be provided if getting events from SQS. More information about these positions can be found in the [AWS DynamoDB Streams API Reference](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_GetShardIterator.html) and [AWS Kinesis API Reference](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType).
|
|
396
396
|
*/
|
|
397
397
|
startingPosition?: pulumi.Input<string>;
|
|
398
398
|
/**
|
|
@@ -497,7 +497,7 @@ export interface EventSourceMappingArgs {
|
|
|
497
497
|
*/
|
|
498
498
|
sourceAccessConfigurations?: pulumi.Input<pulumi.Input<inputs.lambda.EventSourceMappingSourceAccessConfiguration>[]>;
|
|
499
499
|
/**
|
|
500
|
-
* The position in the stream where AWS Lambda should start reading. Must be one of `AT_TIMESTAMP` (Kinesis only), `LATEST` or `TRIM_HORIZON` if getting events from Kinesis, DynamoDB or
|
|
500
|
+
* The position in the stream where AWS Lambda should start reading. Must be one of `AT_TIMESTAMP` (Kinesis only), `LATEST` or `TRIM_HORIZON` if getting events from Kinesis, DynamoDB, MSK or Self Managed Apache Kafka. Must not be provided if getting events from SQS. More information about these positions can be found in the [AWS DynamoDB Streams API Reference](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_GetShardIterator.html) and [AWS Kinesis API Reference](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType).
|
|
501
501
|
*/
|
|
502
502
|
startingPosition?: pulumi.Input<string>;
|
|
503
503
|
/**
|
package/lambda/function.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
225
225
|
*/
|
|
226
226
|
readonly arn: pulumi.Output<string>;
|
|
227
227
|
/**
|
|
228
|
-
* Path to the function's deployment package within the local filesystem.
|
|
228
|
+
* Path to the function's deployment package within the local filesystem. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified.
|
|
229
229
|
*/
|
|
230
230
|
readonly code: pulumi.Output<pulumi.asset.Archive | undefined>;
|
|
231
231
|
/**
|
|
@@ -261,7 +261,7 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
261
261
|
*/
|
|
262
262
|
readonly imageConfig: pulumi.Output<outputs.lambda.FunctionImageConfig | undefined>;
|
|
263
263
|
/**
|
|
264
|
-
* ECR image URI containing the function's deployment package.
|
|
264
|
+
* ECR image URI containing the function's deployment package. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified.
|
|
265
265
|
*/
|
|
266
266
|
readonly imageUri: pulumi.Output<string | undefined>;
|
|
267
267
|
/**
|
|
@@ -304,6 +304,14 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
304
304
|
* Qualified ARN (ARN with lambda version number) to be used for invoking Lambda Function from API Gateway - to be used in `aws.apigateway.Integration`'s `uri`.
|
|
305
305
|
*/
|
|
306
306
|
readonly qualifiedInvokeArn: pulumi.Output<string>;
|
|
307
|
+
/**
|
|
308
|
+
* Whether to replace the security groups on associated lambda network interfaces upon destruction. Removing these security groups from orphaned network interfaces can speed up security group deletion times by avoiding a dependency on AWS's internal cleanup operations. By default, the ENI security groups will be replaced with the `default` security group in the function's VPC. Set the `replacementSecurityGroupIds` attribute to use a custom list of security groups for replacement.
|
|
309
|
+
*/
|
|
310
|
+
readonly replaceSecurityGroupsOnDestroy: pulumi.Output<boolean | undefined>;
|
|
311
|
+
/**
|
|
312
|
+
* List of security group IDs to assign to orphaned Lambda function network interfaces upon destruction. `replaceSecurityGroupsOnDestroy` must be set to `true` to use this attribute.
|
|
313
|
+
*/
|
|
314
|
+
readonly replacementSecurityGroupIds: pulumi.Output<string[] | undefined>;
|
|
307
315
|
/**
|
|
308
316
|
* Amount of reserved concurrent executions for this lambda function. A value of `0` disables lambda from being triggered and `-1` removes any concurrency limitations. Defaults to Unreserved Concurrency Limits `-1`. See [Managing Concurrency](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)
|
|
309
317
|
*/
|
|
@@ -317,11 +325,11 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
317
325
|
*/
|
|
318
326
|
readonly runtime: pulumi.Output<string | undefined>;
|
|
319
327
|
/**
|
|
320
|
-
* S3 bucket location containing the function's deployment package.
|
|
328
|
+
* S3 bucket location containing the function's deployment package. This bucket must reside in the same AWS region where you are creating the Lambda function. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified. When `s3Bucket` is set, `s3Key` is required.
|
|
321
329
|
*/
|
|
322
330
|
readonly s3Bucket: pulumi.Output<string | undefined>;
|
|
323
331
|
/**
|
|
324
|
-
* S3 key of an object containing the function's deployment package.
|
|
332
|
+
* S3 key of an object containing the function's deployment package. When `s3Bucket` is set, `s3Key` is required.
|
|
325
333
|
*/
|
|
326
334
|
readonly s3Key: pulumi.Output<string | undefined>;
|
|
327
335
|
/**
|
|
@@ -400,7 +408,7 @@ export interface FunctionState {
|
|
|
400
408
|
*/
|
|
401
409
|
arn?: pulumi.Input<string>;
|
|
402
410
|
/**
|
|
403
|
-
* Path to the function's deployment package within the local filesystem.
|
|
411
|
+
* Path to the function's deployment package within the local filesystem. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified.
|
|
404
412
|
*/
|
|
405
413
|
code?: pulumi.Input<pulumi.asset.Archive>;
|
|
406
414
|
/**
|
|
@@ -436,7 +444,7 @@ export interface FunctionState {
|
|
|
436
444
|
*/
|
|
437
445
|
imageConfig?: pulumi.Input<inputs.lambda.FunctionImageConfig>;
|
|
438
446
|
/**
|
|
439
|
-
* ECR image URI containing the function's deployment package.
|
|
447
|
+
* ECR image URI containing the function's deployment package. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified.
|
|
440
448
|
*/
|
|
441
449
|
imageUri?: pulumi.Input<string>;
|
|
442
450
|
/**
|
|
@@ -479,6 +487,14 @@ export interface FunctionState {
|
|
|
479
487
|
* Qualified ARN (ARN with lambda version number) to be used for invoking Lambda Function from API Gateway - to be used in `aws.apigateway.Integration`'s `uri`.
|
|
480
488
|
*/
|
|
481
489
|
qualifiedInvokeArn?: pulumi.Input<string>;
|
|
490
|
+
/**
|
|
491
|
+
* Whether to replace the security groups on associated lambda network interfaces upon destruction. Removing these security groups from orphaned network interfaces can speed up security group deletion times by avoiding a dependency on AWS's internal cleanup operations. By default, the ENI security groups will be replaced with the `default` security group in the function's VPC. Set the `replacementSecurityGroupIds` attribute to use a custom list of security groups for replacement.
|
|
492
|
+
*/
|
|
493
|
+
replaceSecurityGroupsOnDestroy?: pulumi.Input<boolean>;
|
|
494
|
+
/**
|
|
495
|
+
* List of security group IDs to assign to orphaned Lambda function network interfaces upon destruction. `replaceSecurityGroupsOnDestroy` must be set to `true` to use this attribute.
|
|
496
|
+
*/
|
|
497
|
+
replacementSecurityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
482
498
|
/**
|
|
483
499
|
* Amount of reserved concurrent executions for this lambda function. A value of `0` disables lambda from being triggered and `-1` removes any concurrency limitations. Defaults to Unreserved Concurrency Limits `-1`. See [Managing Concurrency](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)
|
|
484
500
|
*/
|
|
@@ -492,11 +508,11 @@ export interface FunctionState {
|
|
|
492
508
|
*/
|
|
493
509
|
runtime?: pulumi.Input<string | enums.lambda.Runtime>;
|
|
494
510
|
/**
|
|
495
|
-
* S3 bucket location containing the function's deployment package.
|
|
511
|
+
* S3 bucket location containing the function's deployment package. This bucket must reside in the same AWS region where you are creating the Lambda function. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified. When `s3Bucket` is set, `s3Key` is required.
|
|
496
512
|
*/
|
|
497
513
|
s3Bucket?: pulumi.Input<string>;
|
|
498
514
|
/**
|
|
499
|
-
* S3 key of an object containing the function's deployment package.
|
|
515
|
+
* S3 key of an object containing the function's deployment package. When `s3Bucket` is set, `s3Key` is required.
|
|
500
516
|
*/
|
|
501
517
|
s3Key?: pulumi.Input<string>;
|
|
502
518
|
/**
|
|
@@ -563,7 +579,7 @@ export interface FunctionArgs {
|
|
|
563
579
|
*/
|
|
564
580
|
architectures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
565
581
|
/**
|
|
566
|
-
* Path to the function's deployment package within the local filesystem.
|
|
582
|
+
* Path to the function's deployment package within the local filesystem. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified.
|
|
567
583
|
*/
|
|
568
584
|
code?: pulumi.Input<pulumi.asset.Archive>;
|
|
569
585
|
/**
|
|
@@ -599,7 +615,7 @@ export interface FunctionArgs {
|
|
|
599
615
|
*/
|
|
600
616
|
imageConfig?: pulumi.Input<inputs.lambda.FunctionImageConfig>;
|
|
601
617
|
/**
|
|
602
|
-
* ECR image URI containing the function's deployment package.
|
|
618
|
+
* ECR image URI containing the function's deployment package. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified.
|
|
603
619
|
*/
|
|
604
620
|
imageUri?: pulumi.Input<string>;
|
|
605
621
|
/**
|
|
@@ -626,6 +642,14 @@ export interface FunctionArgs {
|
|
|
626
642
|
* Whether to publish creation/change as new Lambda Function Version. Defaults to `false`.
|
|
627
643
|
*/
|
|
628
644
|
publish?: pulumi.Input<boolean>;
|
|
645
|
+
/**
|
|
646
|
+
* Whether to replace the security groups on associated lambda network interfaces upon destruction. Removing these security groups from orphaned network interfaces can speed up security group deletion times by avoiding a dependency on AWS's internal cleanup operations. By default, the ENI security groups will be replaced with the `default` security group in the function's VPC. Set the `replacementSecurityGroupIds` attribute to use a custom list of security groups for replacement.
|
|
647
|
+
*/
|
|
648
|
+
replaceSecurityGroupsOnDestroy?: pulumi.Input<boolean>;
|
|
649
|
+
/**
|
|
650
|
+
* List of security group IDs to assign to orphaned Lambda function network interfaces upon destruction. `replaceSecurityGroupsOnDestroy` must be set to `true` to use this attribute.
|
|
651
|
+
*/
|
|
652
|
+
replacementSecurityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
629
653
|
/**
|
|
630
654
|
* Amount of reserved concurrent executions for this lambda function. A value of `0` disables lambda from being triggered and `-1` removes any concurrency limitations. Defaults to Unreserved Concurrency Limits `-1`. See [Managing Concurrency](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)
|
|
631
655
|
*/
|
|
@@ -639,11 +663,11 @@ export interface FunctionArgs {
|
|
|
639
663
|
*/
|
|
640
664
|
runtime?: pulumi.Input<string | enums.lambda.Runtime>;
|
|
641
665
|
/**
|
|
642
|
-
* S3 bucket location containing the function's deployment package.
|
|
666
|
+
* S3 bucket location containing the function's deployment package. This bucket must reside in the same AWS region where you are creating the Lambda function. Exactly one of `filename`, `imageUri`, or `s3Bucket` must be specified. When `s3Bucket` is set, `s3Key` is required.
|
|
643
667
|
*/
|
|
644
668
|
s3Bucket?: pulumi.Input<string>;
|
|
645
669
|
/**
|
|
646
|
-
* S3 key of an object containing the function's deployment package.
|
|
670
|
+
* S3 key of an object containing the function's deployment package. When `s3Bucket` is set, `s3Key` is required.
|
|
647
671
|
*/
|
|
648
672
|
s3Key?: pulumi.Input<string>;
|
|
649
673
|
/**
|
package/lambda/function.js
CHANGED
|
@@ -252,6 +252,8 @@ class Function extends pulumi.CustomResource {
|
|
|
252
252
|
resourceInputs["publish"] = state ? state.publish : undefined;
|
|
253
253
|
resourceInputs["qualifiedArn"] = state ? state.qualifiedArn : undefined;
|
|
254
254
|
resourceInputs["qualifiedInvokeArn"] = state ? state.qualifiedInvokeArn : undefined;
|
|
255
|
+
resourceInputs["replaceSecurityGroupsOnDestroy"] = state ? state.replaceSecurityGroupsOnDestroy : undefined;
|
|
256
|
+
resourceInputs["replacementSecurityGroupIds"] = state ? state.replacementSecurityGroupIds : undefined;
|
|
255
257
|
resourceInputs["reservedConcurrentExecutions"] = state ? state.reservedConcurrentExecutions : undefined;
|
|
256
258
|
resourceInputs["role"] = state ? state.role : undefined;
|
|
257
259
|
resourceInputs["runtime"] = state ? state.runtime : undefined;
|
|
@@ -292,6 +294,8 @@ class Function extends pulumi.CustomResource {
|
|
|
292
294
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
293
295
|
resourceInputs["packageType"] = args ? args.packageType : undefined;
|
|
294
296
|
resourceInputs["publish"] = args ? args.publish : undefined;
|
|
297
|
+
resourceInputs["replaceSecurityGroupsOnDestroy"] = args ? args.replaceSecurityGroupsOnDestroy : undefined;
|
|
298
|
+
resourceInputs["replacementSecurityGroupIds"] = args ? args.replacementSecurityGroupIds : undefined;
|
|
295
299
|
resourceInputs["reservedConcurrentExecutions"] = args ? args.reservedConcurrentExecutions : undefined;
|
|
296
300
|
resourceInputs["role"] = args ? args.role : undefined;
|
|
297
301
|
resourceInputs["runtime"] = args ? args.runtime : undefined;
|
package/lambda/function.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"function.js","sourceRoot":"","sources":["../../lambda/function.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAI1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoMG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"function.js","sourceRoot":"","sources":["../../lambda/function.ts"],"names":[],"mappings":"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"}
|
package/lambda/getFunction.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export interface GetFunctionResult {
|
|
|
83
83
|
*/
|
|
84
84
|
readonly imageUri: string;
|
|
85
85
|
/**
|
|
86
|
-
* ARN to be used for invoking Lambda Function from API Gateway.
|
|
86
|
+
* ARN to be used for invoking Lambda Function from API Gateway. **NOTE:** Starting with `v4.51.0` of the provider, this will *not* include the qualifier.
|
|
87
87
|
*/
|
|
88
88
|
readonly invokeArn: string;
|
|
89
89
|
/**
|
package/lb/loadBalancer.d.ts
CHANGED
|
@@ -139,7 +139,7 @@ export declare class LoadBalancer extends pulumi.CustomResource {
|
|
|
139
139
|
*/
|
|
140
140
|
readonly dropInvalidHeaderFields: pulumi.Output<boolean | undefined>;
|
|
141
141
|
/**
|
|
142
|
-
* If true, cross-zone load balancing of the load balancer will be enabled.
|
|
142
|
+
* If true, cross-zone load balancing of the load balancer will be enabled. For `network` and `gateway` type load balancers, this feature is disabled by default (`false`). For `application` load balancer this feature is always enabled (`true`) and cannot be disabled. Defaults to `false`.
|
|
143
143
|
*/
|
|
144
144
|
readonly enableCrossZoneLoadBalancing: pulumi.Output<boolean | undefined>;
|
|
145
145
|
/**
|
|
@@ -257,7 +257,7 @@ export interface LoadBalancerState {
|
|
|
257
257
|
*/
|
|
258
258
|
dropInvalidHeaderFields?: pulumi.Input<boolean>;
|
|
259
259
|
/**
|
|
260
|
-
* If true, cross-zone load balancing of the load balancer will be enabled.
|
|
260
|
+
* If true, cross-zone load balancing of the load balancer will be enabled. For `network` and `gateway` type load balancers, this feature is disabled by default (`false`). For `application` load balancer this feature is always enabled (`true`) and cannot be disabled. Defaults to `false`.
|
|
261
261
|
*/
|
|
262
262
|
enableCrossZoneLoadBalancing?: pulumi.Input<boolean>;
|
|
263
263
|
/**
|
|
@@ -355,7 +355,7 @@ export interface LoadBalancerArgs {
|
|
|
355
355
|
*/
|
|
356
356
|
dropInvalidHeaderFields?: pulumi.Input<boolean>;
|
|
357
357
|
/**
|
|
358
|
-
* If true, cross-zone load balancing of the load balancer will be enabled.
|
|
358
|
+
* If true, cross-zone load balancing of the load balancer will be enabled. For `network` and `gateway` type load balancers, this feature is disabled by default (`false`). For `application` load balancer this feature is always enabled (`true`) and cannot be disabled. Defaults to `false`.
|
|
359
359
|
*/
|
|
360
360
|
enableCrossZoneLoadBalancing?: pulumi.Input<boolean>;
|
|
361
361
|
/**
|