@pulumi/aws 5.18.0 → 5.19.0-alpha.1666816671
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/appstream/stack.d.ts +21 -9
- package/appstream/stack.js.map +1 -1
- package/cloudfront/distribution.d.ts +1 -3
- package/cloudfront/distribution.js +1 -3
- package/cloudfront/distribution.js.map +1 -1
- package/directoryservice/directory.d.ts +9 -9
- package/ec2/launchConfiguration.d.ts +0 -2
- package/ec2/launchConfiguration.js +0 -2
- package/ec2/launchConfiguration.js.map +1 -1
- package/elasticache/getSubnetGroup.d.ts +75 -0
- package/elasticache/getSubnetGroup.js +37 -0
- package/elasticache/getSubnetGroup.js.map +1 -0
- package/elasticache/index.d.ts +3 -0
- package/elasticache/index.js +4 -1
- package/elasticache/index.js.map +1 -1
- package/elasticache/userGroup.d.ts +9 -0
- package/elasticache/userGroup.js.map +1 -1
- package/lightsail/certificate.d.ts +157 -0
- package/lightsail/certificate.js +86 -0
- package/lightsail/certificate.js.map +1 -0
- package/lightsail/containerService.d.ts +45 -0
- package/lightsail/containerService.js +35 -0
- package/lightsail/containerService.js.map +1 -1
- package/lightsail/domainEntry.d.ts +121 -0
- package/lightsail/domainEntry.js +91 -0
- package/lightsail/domainEntry.js.map +1 -0
- package/lightsail/index.d.ts +12 -0
- package/lightsail/index.js +21 -1
- package/lightsail/index.js.map +1 -1
- package/lightsail/lb.d.ts +176 -0
- package/lightsail/lb.js +100 -0
- package/lightsail/lb.js.map +1 -0
- package/lightsail/lbAttachment.d.ts +102 -0
- package/lightsail/lbAttachment.js +99 -0
- package/lightsail/lbAttachment.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/resourcegroups/group.d.ts +15 -3
- package/resourcegroups/group.js +2 -3
- package/resourcegroups/group.js.map +1 -1
- package/route53/getZone.d.ts +4 -0
- package/route53/getZone.js.map +1 -1
- package/route53/record.d.ts +1 -1
- package/route53/record.js +1 -1
- package/route53/zone.d.ts +8 -0
- package/route53/zone.js +2 -0
- package/route53/zone.js.map +1 -1
- package/rum/appMonitor.d.ts +20 -3
- package/rum/appMonitor.js +2 -0
- package/rum/appMonitor.js.map +1 -1
- package/sesv2/dedicatedIpPool.d.ts +95 -0
- package/sesv2/dedicatedIpPool.js +79 -0
- package/sesv2/dedicatedIpPool.js.map +1 -0
- package/sesv2/getDedicatedIpPool.d.ts +71 -0
- package/sesv2/getDedicatedIpPool.js +36 -0
- package/sesv2/getDedicatedIpPool.js.map +1 -0
- package/sesv2/index.d.ts +6 -0
- package/sesv2/index.js +9 -1
- package/sesv2/index.js.map +1 -1
- package/sns/platformApplication.d.ts +39 -1
- package/sns/platformApplication.js +19 -1
- package/sns/platformApplication.js.map +1 -1
- package/sqs/queue.d.ts +1 -10
- package/sqs/queue.js.map +1 -1
- package/ssm/association.d.ts +19 -3
- package/ssm/association.js +16 -0
- package/ssm/association.js.map +1 -1
- package/ssm/getPatchBaseline.d.ts +2 -2
- package/ssm/maintenanceWindow.d.ts +3 -3
- package/ssm/patchBaseline.d.ts +3 -3
- package/types/input.d.ts +63 -10
- package/types/output.d.ts +77 -10
|
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
3
3
|
* Provides an SNS platform application resource
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
|
-
* ### Apple Push Notification Service (APNS)
|
|
6
|
+
* ### Apple Push Notification Service (APNS) using certificate-based authentication
|
|
7
7
|
*
|
|
8
8
|
* ```typescript
|
|
9
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -15,6 +15,20 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
15
15
|
* platformPrincipal: "<APNS CERTIFICATE>",
|
|
16
16
|
* });
|
|
17
17
|
* ```
|
|
18
|
+
* ### Apple Push Notification Service (APNS) using token-based authentication
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as aws from "@pulumi/aws";
|
|
23
|
+
*
|
|
24
|
+
* const apnsApplication = new aws.sns.PlatformApplication("apns_application", {
|
|
25
|
+
* applePlatformBundleId: "<APPLE BUNDLE ID>",
|
|
26
|
+
* applePlatformTeamId: "<APPLE TEAM ID>",
|
|
27
|
+
* platform: "APNS",
|
|
28
|
+
* platformCredential: "<APNS SIGNING KEY>",
|
|
29
|
+
* platformPrincipal: "<APNS SIGNING KEY ID>",
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
18
32
|
* ### Google Cloud Messaging (GCM)
|
|
19
33
|
*
|
|
20
34
|
* ```typescript
|
|
@@ -51,6 +65,14 @@ export declare class PlatformApplication extends pulumi.CustomResource {
|
|
|
51
65
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
52
66
|
*/
|
|
53
67
|
static isInstance(obj: any): obj is PlatformApplication;
|
|
68
|
+
/**
|
|
69
|
+
* The bundle identifier that's assigned to your iOS app. May only include alphanumeric characters, hyphens (-), and periods (.).
|
|
70
|
+
*/
|
|
71
|
+
readonly applePlatformBundleId: pulumi.Output<string | undefined>;
|
|
72
|
+
/**
|
|
73
|
+
* The identifier that's assigned to your Apple developer account team. Must be 10 alphanumeric characters.
|
|
74
|
+
*/
|
|
75
|
+
readonly applePlatformTeamId: pulumi.Output<string | undefined>;
|
|
54
76
|
/**
|
|
55
77
|
* The ARN of the SNS platform application
|
|
56
78
|
*/
|
|
@@ -112,6 +134,14 @@ export declare class PlatformApplication extends pulumi.CustomResource {
|
|
|
112
134
|
* Input properties used for looking up and filtering PlatformApplication resources.
|
|
113
135
|
*/
|
|
114
136
|
export interface PlatformApplicationState {
|
|
137
|
+
/**
|
|
138
|
+
* The bundle identifier that's assigned to your iOS app. May only include alphanumeric characters, hyphens (-), and periods (.).
|
|
139
|
+
*/
|
|
140
|
+
applePlatformBundleId?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The identifier that's assigned to your Apple developer account team. Must be 10 alphanumeric characters.
|
|
143
|
+
*/
|
|
144
|
+
applePlatformTeamId?: pulumi.Input<string>;
|
|
115
145
|
/**
|
|
116
146
|
* The ARN of the SNS platform application
|
|
117
147
|
*/
|
|
@@ -165,6 +195,14 @@ export interface PlatformApplicationState {
|
|
|
165
195
|
* The set of arguments for constructing a PlatformApplication resource.
|
|
166
196
|
*/
|
|
167
197
|
export interface PlatformApplicationArgs {
|
|
198
|
+
/**
|
|
199
|
+
* The bundle identifier that's assigned to your iOS app. May only include alphanumeric characters, hyphens (-), and periods (.).
|
|
200
|
+
*/
|
|
201
|
+
applePlatformBundleId?: pulumi.Input<string>;
|
|
202
|
+
/**
|
|
203
|
+
* The identifier that's assigned to your Apple developer account team. Must be 10 alphanumeric characters.
|
|
204
|
+
*/
|
|
205
|
+
applePlatformTeamId?: pulumi.Input<string>;
|
|
168
206
|
/**
|
|
169
207
|
* The ARN of the SNS Topic triggered when a delivery to any of the platform endpoints associated with your platform application encounters a permanent failure.
|
|
170
208
|
*/
|
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Provides an SNS platform application resource
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
|
-
* ### Apple Push Notification Service (APNS)
|
|
12
|
+
* ### Apple Push Notification Service (APNS) using certificate-based authentication
|
|
13
13
|
*
|
|
14
14
|
* ```typescript
|
|
15
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -21,6 +21,20 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* platformPrincipal: "<APNS CERTIFICATE>",
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
|
24
|
+
* ### Apple Push Notification Service (APNS) using token-based authentication
|
|
25
|
+
*
|
|
26
|
+
* ```typescript
|
|
27
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
28
|
+
* import * as aws from "@pulumi/aws";
|
|
29
|
+
*
|
|
30
|
+
* const apnsApplication = new aws.sns.PlatformApplication("apns_application", {
|
|
31
|
+
* applePlatformBundleId: "<APPLE BUNDLE ID>",
|
|
32
|
+
* applePlatformTeamId: "<APPLE TEAM ID>",
|
|
33
|
+
* platform: "APNS",
|
|
34
|
+
* platformCredential: "<APNS SIGNING KEY>",
|
|
35
|
+
* platformPrincipal: "<APNS SIGNING KEY ID>",
|
|
36
|
+
* });
|
|
37
|
+
* ```
|
|
24
38
|
* ### Google Cloud Messaging (GCM)
|
|
25
39
|
*
|
|
26
40
|
* ```typescript
|
|
@@ -47,6 +61,8 @@ class PlatformApplication extends pulumi.CustomResource {
|
|
|
47
61
|
opts = opts || {};
|
|
48
62
|
if (opts.id) {
|
|
49
63
|
const state = argsOrState;
|
|
64
|
+
resourceInputs["applePlatformBundleId"] = state ? state.applePlatformBundleId : undefined;
|
|
65
|
+
resourceInputs["applePlatformTeamId"] = state ? state.applePlatformTeamId : undefined;
|
|
50
66
|
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
51
67
|
resourceInputs["eventDeliveryFailureTopicArn"] = state ? state.eventDeliveryFailureTopicArn : undefined;
|
|
52
68
|
resourceInputs["eventEndpointCreatedTopicArn"] = state ? state.eventEndpointCreatedTopicArn : undefined;
|
|
@@ -68,6 +84,8 @@ class PlatformApplication extends pulumi.CustomResource {
|
|
|
68
84
|
if ((!args || args.platformCredential === undefined) && !opts.urn) {
|
|
69
85
|
throw new Error("Missing required property 'platformCredential'");
|
|
70
86
|
}
|
|
87
|
+
resourceInputs["applePlatformBundleId"] = args ? args.applePlatformBundleId : undefined;
|
|
88
|
+
resourceInputs["applePlatformTeamId"] = args ? args.applePlatformTeamId : undefined;
|
|
71
89
|
resourceInputs["eventDeliveryFailureTopicArn"] = args ? args.eventDeliveryFailureTopicArn : undefined;
|
|
72
90
|
resourceInputs["eventEndpointCreatedTopicArn"] = args ? args.eventEndpointCreatedTopicArn : undefined;
|
|
73
91
|
resourceInputs["eventEndpointDeletedTopicArn"] = args ? args.eventEndpointDeletedTopicArn : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platformApplication.js","sourceRoot":"","sources":["../../sns/platformApplication.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"platformApplication.js","sourceRoot":"","sources":["../../sns/platformApplication.ts"],"names":[],"mappings":"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"}
|
package/sqs/queue.d.ts
CHANGED
|
@@ -170,10 +170,7 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
170
170
|
* The JSON policy to set up the Dead Letter Queue, see [AWS docs](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSDeadLetterQueue.html). **Note:** when specifying `maxReceiveCount`, you must specify it as an integer (`5`), and not a string (`"5"`).
|
|
171
171
|
*/
|
|
172
172
|
readonly redrivePolicy: pulumi.Output<string>;
|
|
173
|
-
|
|
174
|
-
* Boolean to enable server-side encryption (SSE) of message content with SQS-owned encryption keys. Defaults to `false`. See [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html).
|
|
175
|
-
*/
|
|
176
|
-
readonly sqsManagedSseEnabled: pulumi.Output<boolean | undefined>;
|
|
173
|
+
readonly sqsManagedSseEnabled: pulumi.Output<boolean>;
|
|
177
174
|
/**
|
|
178
175
|
* A map of tags to assign to the queue. If configured with a provider `defaultTags` configuration block) present, tags with matching keys will overwrite those defined at the provider-level.
|
|
179
176
|
*/
|
|
@@ -271,9 +268,6 @@ export interface QueueState {
|
|
|
271
268
|
* The JSON policy to set up the Dead Letter Queue, see [AWS docs](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSDeadLetterQueue.html). **Note:** when specifying `maxReceiveCount`, you must specify it as an integer (`5`), and not a string (`"5"`).
|
|
272
269
|
*/
|
|
273
270
|
redrivePolicy?: pulumi.Input<string>;
|
|
274
|
-
/**
|
|
275
|
-
* Boolean to enable server-side encryption (SSE) of message content with SQS-owned encryption keys. Defaults to `false`. See [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html).
|
|
276
|
-
*/
|
|
277
271
|
sqsManagedSseEnabled?: pulumi.Input<boolean>;
|
|
278
272
|
/**
|
|
279
273
|
* A map of tags to assign to the queue. If configured with a provider `defaultTags` configuration block) present, tags with matching keys will overwrite those defined at the provider-level.
|
|
@@ -360,9 +354,6 @@ export interface QueueArgs {
|
|
|
360
354
|
* The JSON policy to set up the Dead Letter Queue, see [AWS docs](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSDeadLetterQueue.html). **Note:** when specifying `maxReceiveCount`, you must specify it as an integer (`5`), and not a string (`"5"`).
|
|
361
355
|
*/
|
|
362
356
|
redrivePolicy?: pulumi.Input<string>;
|
|
363
|
-
/**
|
|
364
|
-
* Boolean to enable server-side encryption (SSE) of message content with SQS-owned encryption keys. Defaults to `false`. See [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html).
|
|
365
|
-
*/
|
|
366
357
|
sqsManagedSseEnabled?: pulumi.Input<boolean>;
|
|
367
358
|
/**
|
|
368
359
|
* A map of tags to assign to the queue. If configured with a provider `defaultTags` configuration block) present, tags with matching keys will overwrite those defined at the provider-level.
|
package/sqs/queue.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queue.js","sourceRoot":"","sources":["../../sqs/queue.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0FG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"queue.js","sourceRoot":"","sources":["../../sqs/queue.ts"],"names":[],"mappings":"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"}
|
package/ssm/association.d.ts
CHANGED
|
@@ -46,6 +46,22 @@ import * as outputs from "../types/output";
|
|
|
46
46
|
* }],
|
|
47
47
|
* });
|
|
48
48
|
* ```
|
|
49
|
+
* ### Create an association with a specific schedule
|
|
50
|
+
*
|
|
51
|
+
* This example shows how to schedule an association in various ways.
|
|
52
|
+
*
|
|
53
|
+
* ```typescript
|
|
54
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
55
|
+
* import * as aws from "@pulumi/aws";
|
|
56
|
+
*
|
|
57
|
+
* const example = new aws.ssm.Association("example", {
|
|
58
|
+
* scheduleExpression: "cron(0 2 ? * SUN *)",
|
|
59
|
+
* targets: [{
|
|
60
|
+
* key: "InstanceIds",
|
|
61
|
+
* values: [aws_instance.example.id],
|
|
62
|
+
* }],
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
49
65
|
*
|
|
50
66
|
* ## Import
|
|
51
67
|
*
|
|
@@ -128,7 +144,7 @@ export declare class Association extends pulumi.CustomResource {
|
|
|
128
144
|
[key: string]: string;
|
|
129
145
|
}>;
|
|
130
146
|
/**
|
|
131
|
-
* A cron expression when the association
|
|
147
|
+
* A [cron or rate expression](https://docs.aws.amazon.com/systems-manager/latest/userguide/reference-cron-and-rate-expressions.html) that specifies when the association runs.
|
|
132
148
|
*/
|
|
133
149
|
readonly scheduleExpression: pulumi.Output<string | undefined>;
|
|
134
150
|
/**
|
|
@@ -209,7 +225,7 @@ export interface AssociationState {
|
|
|
209
225
|
[key: string]: pulumi.Input<string>;
|
|
210
226
|
}>;
|
|
211
227
|
/**
|
|
212
|
-
* A cron expression when the association
|
|
228
|
+
* A [cron or rate expression](https://docs.aws.amazon.com/systems-manager/latest/userguide/reference-cron-and-rate-expressions.html) that specifies when the association runs.
|
|
213
229
|
*/
|
|
214
230
|
scheduleExpression?: pulumi.Input<string>;
|
|
215
231
|
/**
|
|
@@ -274,7 +290,7 @@ export interface AssociationArgs {
|
|
|
274
290
|
[key: string]: pulumi.Input<string>;
|
|
275
291
|
}>;
|
|
276
292
|
/**
|
|
277
|
-
* A cron expression when the association
|
|
293
|
+
* A [cron or rate expression](https://docs.aws.amazon.com/systems-manager/latest/userguide/reference-cron-and-rate-expressions.html) that specifies when the association runs.
|
|
278
294
|
*/
|
|
279
295
|
scheduleExpression?: pulumi.Input<string>;
|
|
280
296
|
/**
|
package/ssm/association.js
CHANGED
|
@@ -50,6 +50,22 @@ const utilities = require("../utilities");
|
|
|
50
50
|
* }],
|
|
51
51
|
* });
|
|
52
52
|
* ```
|
|
53
|
+
* ### Create an association with a specific schedule
|
|
54
|
+
*
|
|
55
|
+
* This example shows how to schedule an association in various ways.
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as aws from "@pulumi/aws";
|
|
60
|
+
*
|
|
61
|
+
* const example = new aws.ssm.Association("example", {
|
|
62
|
+
* scheduleExpression: "cron(0 2 ? * SUN *)",
|
|
63
|
+
* targets: [{
|
|
64
|
+
* key: "InstanceIds",
|
|
65
|
+
* values: [aws_instance.example.id],
|
|
66
|
+
* }],
|
|
67
|
+
* });
|
|
68
|
+
* ```
|
|
53
69
|
*
|
|
54
70
|
* ## Import
|
|
55
71
|
*
|
package/ssm/association.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"association.js","sourceRoot":"","sources":["../../ssm/association.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"association.js","sourceRoot":"","sources":["../../ssm/association.ts"],"names":[],"mappings":"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"}
|
|
@@ -46,7 +46,7 @@ export interface GetPatchBaselineArgs {
|
|
|
46
46
|
*/
|
|
47
47
|
namePrefix?: string;
|
|
48
48
|
/**
|
|
49
|
-
* Specified OS for the baseline.
|
|
49
|
+
* Specified OS for the baseline. Valid values: `AMAZON_LINUX`, `AMAZON_LINUX_2`, `UBUNTU`, `REDHAT_ENTERPRISE_LINUX`, `SUSE`, `CENTOS`, `ORACLE_LINUX`, `DEBIAN`, `MACOS`, `RASPBIAN` and `ROCKY_LINUX`.
|
|
50
50
|
*/
|
|
51
51
|
operatingSystem?: string;
|
|
52
52
|
/**
|
|
@@ -121,7 +121,7 @@ export interface GetPatchBaselineOutputArgs {
|
|
|
121
121
|
*/
|
|
122
122
|
namePrefix?: pulumi.Input<string>;
|
|
123
123
|
/**
|
|
124
|
-
* Specified OS for the baseline.
|
|
124
|
+
* Specified OS for the baseline. Valid values: `AMAZON_LINUX`, `AMAZON_LINUX_2`, `UBUNTU`, `REDHAT_ENTERPRISE_LINUX`, `SUSE`, `CENTOS`, `ORACLE_LINUX`, `DEBIAN`, `MACOS`, `RASPBIAN` and `ROCKY_LINUX`.
|
|
125
125
|
*/
|
|
126
126
|
operatingSystem?: pulumi.Input<string>;
|
|
127
127
|
/**
|
|
@@ -70,7 +70,7 @@ export declare class MaintenanceWindow extends pulumi.CustomResource {
|
|
|
70
70
|
*/
|
|
71
71
|
readonly name: pulumi.Output<string>;
|
|
72
72
|
/**
|
|
73
|
-
* The schedule of the Maintenance Window in the form of a [cron](https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
|
73
|
+
* The schedule of the Maintenance Window in the form of a [cron or rate expression](https://docs.aws.amazon.com/systems-manager/latest/userguide/reference-cron-and-rate-expressions.html).
|
|
74
74
|
*/
|
|
75
75
|
readonly schedule: pulumi.Output<string>;
|
|
76
76
|
/**
|
|
@@ -139,7 +139,7 @@ export interface MaintenanceWindowState {
|
|
|
139
139
|
*/
|
|
140
140
|
name?: pulumi.Input<string>;
|
|
141
141
|
/**
|
|
142
|
-
* The schedule of the Maintenance Window in the form of a [cron](https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
|
142
|
+
* The schedule of the Maintenance Window in the form of a [cron or rate expression](https://docs.aws.amazon.com/systems-manager/latest/userguide/reference-cron-and-rate-expressions.html).
|
|
143
143
|
*/
|
|
144
144
|
schedule?: pulumi.Input<string>;
|
|
145
145
|
/**
|
|
@@ -200,7 +200,7 @@ export interface MaintenanceWindowArgs {
|
|
|
200
200
|
*/
|
|
201
201
|
name?: pulumi.Input<string>;
|
|
202
202
|
/**
|
|
203
|
-
* The schedule of the Maintenance Window in the form of a [cron](https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
|
203
|
+
* The schedule of the Maintenance Window in the form of a [cron or rate expression](https://docs.aws.amazon.com/systems-manager/latest/userguide/reference-cron-and-rate-expressions.html).
|
|
204
204
|
*/
|
|
205
205
|
schedule: pulumi.Input<string>;
|
|
206
206
|
/**
|
package/ssm/patchBaseline.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ export declare class PatchBaseline extends pulumi.CustomResource {
|
|
|
225
225
|
*/
|
|
226
226
|
readonly name: pulumi.Output<string>;
|
|
227
227
|
/**
|
|
228
|
-
* Defines the operating system the patch baseline applies to. Supported operating systems
|
|
228
|
+
* Defines the operating system the patch baseline applies to. Supported operating systems are `AMAZON_LINUX`, `AMAZON_LINUX_2`, `UBUNTU`, `REDHAT_ENTERPRISE_LINUX`, `SUSE`, `CENTOS`, `ORACLE_LINUX`, `DEBIAN`, `MACOS`, `RASPBIAN` and `ROCKY_LINUX`. The Default value is `WINDOWS`.
|
|
229
229
|
*/
|
|
230
230
|
readonly operatingSystem: pulumi.Output<string | undefined>;
|
|
231
231
|
/**
|
|
@@ -298,7 +298,7 @@ export interface PatchBaselineState {
|
|
|
298
298
|
*/
|
|
299
299
|
name?: pulumi.Input<string>;
|
|
300
300
|
/**
|
|
301
|
-
* Defines the operating system the patch baseline applies to. Supported operating systems
|
|
301
|
+
* Defines the operating system the patch baseline applies to. Supported operating systems are `AMAZON_LINUX`, `AMAZON_LINUX_2`, `UBUNTU`, `REDHAT_ENTERPRISE_LINUX`, `SUSE`, `CENTOS`, `ORACLE_LINUX`, `DEBIAN`, `MACOS`, `RASPBIAN` and `ROCKY_LINUX`. The Default value is `WINDOWS`.
|
|
302
302
|
*/
|
|
303
303
|
operatingSystem?: pulumi.Input<string>;
|
|
304
304
|
/**
|
|
@@ -359,7 +359,7 @@ export interface PatchBaselineArgs {
|
|
|
359
359
|
*/
|
|
360
360
|
name?: pulumi.Input<string>;
|
|
361
361
|
/**
|
|
362
|
-
* Defines the operating system the patch baseline applies to. Supported operating systems
|
|
362
|
+
* Defines the operating system the patch baseline applies to. Supported operating systems are `AMAZON_LINUX`, `AMAZON_LINUX_2`, `UBUNTU`, `REDHAT_ENTERPRISE_LINUX`, `SUSE`, `CENTOS`, `ORACLE_LINUX`, `DEBIAN`, `MACOS`, `RASPBIAN` and `ROCKY_LINUX`. The Default value is `WINDOWS`.
|
|
363
363
|
*/
|
|
364
364
|
operatingSystem?: pulumi.Input<string>;
|
|
365
365
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -6126,7 +6126,8 @@ export declare namespace appstream {
|
|
|
6126
6126
|
}
|
|
6127
6127
|
interface StackAccessEndpoint {
|
|
6128
6128
|
/**
|
|
6129
|
-
* Type of the interface endpoint.
|
|
6129
|
+
* Type of the interface endpoint.
|
|
6130
|
+
* See the [`AccessEndpoint` AWS API documentation](https://docs.aws.amazon.com/appstream2/latest/APIReference/API_AccessEndpoint.html) for valid values.
|
|
6130
6131
|
*/
|
|
6131
6132
|
endpointType: pulumi.Input<string>;
|
|
6132
6133
|
/**
|
|
@@ -6135,12 +6136,21 @@ export declare namespace appstream {
|
|
|
6135
6136
|
vpceId?: pulumi.Input<string>;
|
|
6136
6137
|
}
|
|
6137
6138
|
interface StackApplicationSettings {
|
|
6138
|
-
|
|
6139
|
+
/**
|
|
6140
|
+
* Whether application settings should be persisted.
|
|
6141
|
+
*/
|
|
6142
|
+
enabled: pulumi.Input<boolean>;
|
|
6143
|
+
/**
|
|
6144
|
+
* Name of the settings group.
|
|
6145
|
+
* Required when `enabled` is `true`.
|
|
6146
|
+
* Can be up to 100 characters.
|
|
6147
|
+
*/
|
|
6139
6148
|
settingsGroup?: pulumi.Input<string>;
|
|
6140
6149
|
}
|
|
6141
6150
|
interface StackStorageConnector {
|
|
6142
6151
|
/**
|
|
6143
|
-
* Type of storage connector.
|
|
6152
|
+
* Type of storage connector.
|
|
6153
|
+
* Valid values are `HOMEFOLDERS`, `GOOGLE_DRIVE`, or `ONE_DRIVE`.
|
|
6144
6154
|
*/
|
|
6145
6155
|
connectorType: pulumi.Input<string>;
|
|
6146
6156
|
/**
|
|
@@ -6154,11 +6164,13 @@ export declare namespace appstream {
|
|
|
6154
6164
|
}
|
|
6155
6165
|
interface StackUserSetting {
|
|
6156
6166
|
/**
|
|
6157
|
-
* Action that is enabled or disabled.
|
|
6167
|
+
* Action that is enabled or disabled.
|
|
6168
|
+
* Valid values are `CLIPBOARD_COPY_FROM_LOCAL_DEVICE`, `CLIPBOARD_COPY_TO_LOCAL_DEVICE`, `FILE_UPLOAD`, `FILE_DOWNLOAD`, `PRINTING_TO_LOCAL_DEVICE`, `DOMAIN_PASSWORD_SIGNIN`, or `DOMAIN_SMART_CARD_SIGNIN`.
|
|
6158
6169
|
*/
|
|
6159
6170
|
action: pulumi.Input<string>;
|
|
6160
6171
|
/**
|
|
6161
|
-
* Whether the action is enabled or disabled.
|
|
6172
|
+
* Whether the action is enabled or disabled.
|
|
6173
|
+
* Valid values are `ENABLED` or `DISABLED`.
|
|
6162
6174
|
*/
|
|
6163
6175
|
permission: pulumi.Input<string>;
|
|
6164
6176
|
}
|
|
@@ -8741,7 +8753,7 @@ export declare namespace cloudfront {
|
|
|
8741
8753
|
/**
|
|
8742
8754
|
* The CloudFront custom
|
|
8743
8755
|
* origin configuration information. If an S3
|
|
8744
|
-
* origin is required, use `s3OriginConfig` instead.
|
|
8756
|
+
* origin is required, use `originAccessControlId` or `s3OriginConfig` instead.
|
|
8745
8757
|
*/
|
|
8746
8758
|
customOriginConfig?: pulumi.Input<inputs.cloudfront.DistributionOriginCustomOriginConfig>;
|
|
8747
8759
|
/**
|
|
@@ -8750,7 +8762,7 @@ export declare namespace cloudfront {
|
|
|
8750
8762
|
*/
|
|
8751
8763
|
domainName: pulumi.Input<string>;
|
|
8752
8764
|
/**
|
|
8753
|
-
* The unique identifier of
|
|
8765
|
+
* The unique identifier of a [CloudFront origin access control](https://www.terraform.io/docs/providers/aws/r/cloudfront_origin_access_control.html) for this origin.
|
|
8754
8766
|
*/
|
|
8755
8767
|
originAccessControlId?: pulumi.Input<string>;
|
|
8756
8768
|
/**
|
|
@@ -8846,8 +8858,7 @@ export declare namespace cloudfront {
|
|
|
8846
8858
|
}
|
|
8847
8859
|
interface DistributionOriginS3OriginConfig {
|
|
8848
8860
|
/**
|
|
8849
|
-
* The [CloudFront origin access
|
|
8850
|
-
* identity][5] to associate with the origin.
|
|
8861
|
+
* The [CloudFront origin access identity](https://www.terraform.io/docs/providers/aws/r/cloudfront_origin_access_identity.html) to associate with the origin.
|
|
8851
8862
|
*/
|
|
8852
8863
|
originAccessIdentity: pulumi.Input<string>;
|
|
8853
8864
|
}
|
|
@@ -29009,6 +29020,15 @@ export declare namespace lex {
|
|
|
29009
29020
|
}
|
|
29010
29021
|
}
|
|
29011
29022
|
export declare namespace lightsail {
|
|
29023
|
+
interface CertificateDomainValidationOption {
|
|
29024
|
+
/**
|
|
29025
|
+
* A domain name for which the certificate should be issued.
|
|
29026
|
+
*/
|
|
29027
|
+
domainName?: pulumi.Input<string>;
|
|
29028
|
+
resourceRecordName?: pulumi.Input<string>;
|
|
29029
|
+
resourceRecordType?: pulumi.Input<string>;
|
|
29030
|
+
resourceRecordValue?: pulumi.Input<string>;
|
|
29031
|
+
}
|
|
29012
29032
|
interface ContainerServiceDeploymentVersionContainer {
|
|
29013
29033
|
/**
|
|
29014
29034
|
* The launch command for the container. A list of string.
|
|
@@ -29075,6 +29095,19 @@ export declare namespace lightsail {
|
|
|
29075
29095
|
*/
|
|
29076
29096
|
unhealthyThreshold?: pulumi.Input<number>;
|
|
29077
29097
|
}
|
|
29098
|
+
interface ContainerServicePrivateRegistryAccess {
|
|
29099
|
+
/**
|
|
29100
|
+
* Describes a request to configure an Amazon Lightsail container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories. See ECR Image Puller Role below for more details.
|
|
29101
|
+
*/
|
|
29102
|
+
ecrImagePullerRole?: pulumi.Input<inputs.lightsail.ContainerServicePrivateRegistryAccessEcrImagePullerRole>;
|
|
29103
|
+
}
|
|
29104
|
+
interface ContainerServicePrivateRegistryAccessEcrImagePullerRole {
|
|
29105
|
+
/**
|
|
29106
|
+
* A Boolean value that indicates whether to activate the role. The default is `false`.
|
|
29107
|
+
*/
|
|
29108
|
+
isActive?: pulumi.Input<boolean>;
|
|
29109
|
+
principalArn?: pulumi.Input<string>;
|
|
29110
|
+
}
|
|
29078
29111
|
interface ContainerServicePublicDomainNames {
|
|
29079
29112
|
certificates: pulumi.Input<pulumi.Input<inputs.lightsail.ContainerServicePublicDomainNamesCertificate>[]>;
|
|
29080
29113
|
}
|
|
@@ -33446,6 +33479,26 @@ export declare namespace redshiftserverless {
|
|
|
33446
33479
|
}
|
|
33447
33480
|
}
|
|
33448
33481
|
export declare namespace resourcegroups {
|
|
33482
|
+
interface GroupConfiguration {
|
|
33483
|
+
/**
|
|
33484
|
+
* A collection of parameters for this group configuration item. See below for details.
|
|
33485
|
+
*/
|
|
33486
|
+
parameters: pulumi.Input<pulumi.Input<inputs.resourcegroups.GroupConfigurationParameter>[]>;
|
|
33487
|
+
/**
|
|
33488
|
+
* Specifies the type of group configuration item.
|
|
33489
|
+
*/
|
|
33490
|
+
type: pulumi.Input<string>;
|
|
33491
|
+
}
|
|
33492
|
+
interface GroupConfigurationParameter {
|
|
33493
|
+
/**
|
|
33494
|
+
* The name of the group configuration parameter.
|
|
33495
|
+
*/
|
|
33496
|
+
name: pulumi.Input<string>;
|
|
33497
|
+
/**
|
|
33498
|
+
* The value or values to be used for the specified parameter.
|
|
33499
|
+
*/
|
|
33500
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
33501
|
+
}
|
|
33449
33502
|
interface GroupResourceQuery {
|
|
33450
33503
|
/**
|
|
33451
33504
|
* The resource query as a JSON string.
|
|
@@ -38887,7 +38940,7 @@ export declare namespace sesv2 {
|
|
|
38887
38940
|
}
|
|
38888
38941
|
interface ConfigurationSetSuppressionOptions {
|
|
38889
38942
|
/**
|
|
38890
|
-
* A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid
|
|
38943
|
+
* A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values: `BOUNCE`, `COMPLAINT`.
|
|
38891
38944
|
*/
|
|
38892
38945
|
suppressedReasons?: pulumi.Input<pulumi.Input<string>[]>;
|
|
38893
38946
|
}
|