@pulumi/aws 6.50.0 → 6.50.1
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/batch/getJobQueue.d.ts +8 -0
- package/batch/getJobQueue.js.map +1 -1
- package/batch/jobDefinition.d.ts +93 -1
- package/batch/jobDefinition.js +83 -1
- package/batch/jobDefinition.js.map +1 -1
- package/batch/jobQueue.d.ts +12 -0
- package/batch/jobQueue.js +2 -0
- package/batch/jobQueue.js.map +1 -1
- package/cloudfront/responseHeadersPolicy.d.ts +6 -1
- package/cloudfront/responseHeadersPolicy.js +6 -1
- package/cloudfront/responseHeadersPolicy.js.map +1 -1
- package/cognito/managedUserPoolClient.d.ts +15 -15
- package/cognito/userPoolClient.d.ts +57 -75
- package/cognito/userPoolClient.js.map +1 -1
- package/datazone/project.d.ts +13 -13
- package/datazone/project.js +2 -2
- package/ecs/service.d.ts +3 -0
- package/ecs/service.js.map +1 -1
- package/grafana/workspace.d.ts +26 -0
- package/grafana/workspace.js +26 -0
- package/grafana/workspace.js.map +1 -1
- package/opensearch/outboundConnection.d.ts +1 -1
- package/package.json +2 -2
- package/pinpoint/gcmChannel.d.ts +9 -16
- package/pinpoint/gcmChannel.js +6 -18
- package/pinpoint/gcmChannel.js.map +1 -1
- package/route53/getZones.d.ts +43 -0
- package/route53/getZones.js +47 -0
- package/route53/getZones.js.map +1 -0
- package/route53/index.d.ts +3 -0
- package/route53/index.js +5 -1
- package/route53/index.js.map +1 -1
- package/ssoadmin/getPermissionSets.d.ts +66 -0
- package/ssoadmin/getPermissionSets.js +53 -0
- package/ssoadmin/getPermissionSets.js.map +1 -0
- package/ssoadmin/index.d.ts +3 -0
- package/ssoadmin/index.js +4 -1
- package/ssoadmin/index.js.map +1 -1
- package/types/input.d.ts +16 -0
- package/types/input.js.map +1 -1
- package/types/output.d.ts +25 -0
- package/types/output.js.map +1 -1
|
@@ -136,33 +136,31 @@ export declare class UserPoolClient extends pulumi.CustomResource {
|
|
|
136
136
|
*/
|
|
137
137
|
static isInstance(obj: any): obj is UserPoolClient;
|
|
138
138
|
/**
|
|
139
|
-
* Time limit, between 5 minutes and 1 day, after which the access token is no longer valid and cannot be used.
|
|
140
|
-
* By default, the unit is hours.
|
|
141
|
-
* The unit can be overridden by a value in `token_validity_units.access_token`.
|
|
139
|
+
* Time limit, between 5 minutes and 1 day, after which the access token is no longer valid and cannot be used. By default, the unit is hours. The unit can be overridden by a value in `token_validity_units.access_token`.
|
|
142
140
|
*/
|
|
143
141
|
readonly accessTokenValidity: pulumi.Output<number>;
|
|
144
142
|
/**
|
|
145
|
-
* List of allowed OAuth flows
|
|
143
|
+
* List of allowed OAuth flows, including `code`, `implicit`, and `clientCredentials`. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
146
144
|
*/
|
|
147
145
|
readonly allowedOauthFlows: pulumi.Output<string[]>;
|
|
148
146
|
/**
|
|
149
|
-
* Whether the client is allowed to
|
|
147
|
+
* Whether the client is allowed to use OAuth 2.0 features. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure the following arguments: `callbackUrls`, `logoutUrls`, `allowedOauthScopes` and `allowedOauthFlows`.
|
|
150
148
|
*/
|
|
151
149
|
readonly allowedOauthFlowsUserPoolClient: pulumi.Output<boolean>;
|
|
152
150
|
/**
|
|
153
|
-
* List of allowed OAuth scopes
|
|
151
|
+
* List of allowed OAuth scopes, including `phone`, `email`, `openid`, `profile`, and `aws.cognito.signin.user.admin`. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
154
152
|
*/
|
|
155
153
|
readonly allowedOauthScopes: pulumi.Output<string[]>;
|
|
156
154
|
/**
|
|
157
|
-
* Configuration block for Amazon Pinpoint analytics
|
|
155
|
+
* Configuration block for Amazon Pinpoint analytics that collects metrics for this user pool. See details below.
|
|
158
156
|
*/
|
|
159
157
|
readonly analyticsConfiguration: pulumi.Output<outputs.cognito.UserPoolClientAnalyticsConfiguration | undefined>;
|
|
160
158
|
/**
|
|
161
|
-
*
|
|
159
|
+
* Duration, in minutes, of the session token created by Amazon Cognito for each API request in an authentication flow. The session token must be responded to by the native user of the user pool before it expires. Valid values for `authSessionValidity` are between `3` and `15`, with a default value of `3`.
|
|
162
160
|
*/
|
|
163
161
|
readonly authSessionValidity: pulumi.Output<number>;
|
|
164
162
|
/**
|
|
165
|
-
* List of allowed callback URLs for the identity providers.
|
|
163
|
+
* List of allowed callback URLs for the identity providers. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
166
164
|
*/
|
|
167
165
|
readonly callbackUrls: pulumi.Output<string[]>;
|
|
168
166
|
/**
|
|
@@ -170,11 +168,11 @@ export declare class UserPoolClient extends pulumi.CustomResource {
|
|
|
170
168
|
*/
|
|
171
169
|
readonly clientSecret: pulumi.Output<string>;
|
|
172
170
|
/**
|
|
173
|
-
* Default redirect URI
|
|
171
|
+
* Default redirect URI and must be included in the list of callback URLs.
|
|
174
172
|
*/
|
|
175
173
|
readonly defaultRedirectUri: pulumi.Output<string>;
|
|
176
174
|
/**
|
|
177
|
-
*
|
|
175
|
+
* Enables the propagation of additional user context data.
|
|
178
176
|
*/
|
|
179
177
|
readonly enablePropagateAdditionalUserContextData: pulumi.Output<boolean>;
|
|
180
178
|
/**
|
|
@@ -182,21 +180,19 @@ export declare class UserPoolClient extends pulumi.CustomResource {
|
|
|
182
180
|
*/
|
|
183
181
|
readonly enableTokenRevocation: pulumi.Output<boolean>;
|
|
184
182
|
/**
|
|
185
|
-
* List of authentication flows
|
|
183
|
+
* List of authentication flows. The available options include ADMIN_NO_SRP_AUTH, CUSTOM_AUTH_FLOW_ONLY, USER_PASSWORD_AUTH, ALLOW_ADMIN_USER_PASSWORD_AUTH, ALLOW_CUSTOM_AUTH, ALLOW_USER_PASSWORD_AUTH, ALLOW_USER_SRP_AUTH, and ALLOW_REFRESH_TOKEN_AUTH.
|
|
186
184
|
*/
|
|
187
185
|
readonly explicitAuthFlows: pulumi.Output<string[]>;
|
|
188
186
|
/**
|
|
189
|
-
*
|
|
187
|
+
* Boolean flag indicating whether an application secret should be generated.
|
|
190
188
|
*/
|
|
191
189
|
readonly generateSecret: pulumi.Output<boolean | undefined>;
|
|
192
190
|
/**
|
|
193
|
-
* Time limit, between 5 minutes and 1 day, after which the ID token is no longer valid and cannot be used.
|
|
194
|
-
* By default, the unit is hours.
|
|
195
|
-
* The unit can be overridden by a value in `token_validity_units.id_token`.
|
|
191
|
+
* Time limit, between 5 minutes and 1 day, after which the ID token is no longer valid and cannot be used. By default, the unit is hours. The unit can be overridden by a value in `token_validity_units.id_token`.
|
|
196
192
|
*/
|
|
197
193
|
readonly idTokenValidity: pulumi.Output<number>;
|
|
198
194
|
/**
|
|
199
|
-
* List of allowed logout URLs for the identity providers.
|
|
195
|
+
* List of allowed logout URLs for the identity providers. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
200
196
|
*/
|
|
201
197
|
readonly logoutUrls: pulumi.Output<string[]>;
|
|
202
198
|
/**
|
|
@@ -204,25 +200,23 @@ export declare class UserPoolClient extends pulumi.CustomResource {
|
|
|
204
200
|
*/
|
|
205
201
|
readonly name: pulumi.Output<string>;
|
|
206
202
|
/**
|
|
207
|
-
*
|
|
203
|
+
* Setting determines the errors and responses returned by Cognito APIs when a user does not exist in the user pool during authentication, account confirmation, and password recovery.
|
|
208
204
|
*/
|
|
209
205
|
readonly preventUserExistenceErrors: pulumi.Output<string>;
|
|
210
206
|
/**
|
|
211
|
-
* List of user pool attributes the application client can read from.
|
|
207
|
+
* List of user pool attributes that the application client can read from.
|
|
212
208
|
*/
|
|
213
209
|
readonly readAttributes: pulumi.Output<string[]>;
|
|
214
210
|
/**
|
|
215
|
-
* Time limit, between 60 minutes and 10 years, after which the refresh token is no longer valid and cannot be used.
|
|
216
|
-
* By default, the unit is days.
|
|
217
|
-
* The unit can be overridden by a value in `token_validity_units.refresh_token`.
|
|
211
|
+
* Time limit, between 60 minutes and 10 years, after which the refresh token is no longer valid and cannot be used. By default, the unit is days. The unit can be overridden by a value in `token_validity_units.refresh_token`.
|
|
218
212
|
*/
|
|
219
213
|
readonly refreshTokenValidity: pulumi.Output<number>;
|
|
220
214
|
/**
|
|
221
|
-
* List of provider names for the identity providers that are supported on this client.
|
|
215
|
+
* List of provider names for the identity providers that are supported on this client. It uses the `providerName` attribute of the `aws.cognito.IdentityProvider` resource(s), or the equivalent string(s).
|
|
222
216
|
*/
|
|
223
217
|
readonly supportedIdentityProviders: pulumi.Output<string[]>;
|
|
224
218
|
/**
|
|
225
|
-
* Configuration block for
|
|
219
|
+
* Configuration block for representing the validity times in units. See details below. Detailed below.
|
|
226
220
|
*/
|
|
227
221
|
readonly tokenValidityUnits: pulumi.Output<outputs.cognito.UserPoolClientTokenValidityUnits | undefined>;
|
|
228
222
|
/**
|
|
@@ -232,7 +226,7 @@ export declare class UserPoolClient extends pulumi.CustomResource {
|
|
|
232
226
|
*/
|
|
233
227
|
readonly userPoolId: pulumi.Output<string>;
|
|
234
228
|
/**
|
|
235
|
-
* List of user pool attributes the application client can write to.
|
|
229
|
+
* List of user pool attributes that the application client can write to.
|
|
236
230
|
*/
|
|
237
231
|
readonly writeAttributes: pulumi.Output<string[]>;
|
|
238
232
|
/**
|
|
@@ -249,33 +243,31 @@ export declare class UserPoolClient extends pulumi.CustomResource {
|
|
|
249
243
|
*/
|
|
250
244
|
export interface UserPoolClientState {
|
|
251
245
|
/**
|
|
252
|
-
* Time limit, between 5 minutes and 1 day, after which the access token is no longer valid and cannot be used.
|
|
253
|
-
* By default, the unit is hours.
|
|
254
|
-
* The unit can be overridden by a value in `token_validity_units.access_token`.
|
|
246
|
+
* Time limit, between 5 minutes and 1 day, after which the access token is no longer valid and cannot be used. By default, the unit is hours. The unit can be overridden by a value in `token_validity_units.access_token`.
|
|
255
247
|
*/
|
|
256
248
|
accessTokenValidity?: pulumi.Input<number>;
|
|
257
249
|
/**
|
|
258
|
-
* List of allowed OAuth flows
|
|
250
|
+
* List of allowed OAuth flows, including `code`, `implicit`, and `clientCredentials`. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
259
251
|
*/
|
|
260
252
|
allowedOauthFlows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
261
253
|
/**
|
|
262
|
-
* Whether the client is allowed to
|
|
254
|
+
* Whether the client is allowed to use OAuth 2.0 features. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure the following arguments: `callbackUrls`, `logoutUrls`, `allowedOauthScopes` and `allowedOauthFlows`.
|
|
263
255
|
*/
|
|
264
256
|
allowedOauthFlowsUserPoolClient?: pulumi.Input<boolean>;
|
|
265
257
|
/**
|
|
266
|
-
* List of allowed OAuth scopes
|
|
258
|
+
* List of allowed OAuth scopes, including `phone`, `email`, `openid`, `profile`, and `aws.cognito.signin.user.admin`. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
267
259
|
*/
|
|
268
260
|
allowedOauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
269
261
|
/**
|
|
270
|
-
* Configuration block for Amazon Pinpoint analytics
|
|
262
|
+
* Configuration block for Amazon Pinpoint analytics that collects metrics for this user pool. See details below.
|
|
271
263
|
*/
|
|
272
264
|
analyticsConfiguration?: pulumi.Input<inputs.cognito.UserPoolClientAnalyticsConfiguration>;
|
|
273
265
|
/**
|
|
274
|
-
*
|
|
266
|
+
* Duration, in minutes, of the session token created by Amazon Cognito for each API request in an authentication flow. The session token must be responded to by the native user of the user pool before it expires. Valid values for `authSessionValidity` are between `3` and `15`, with a default value of `3`.
|
|
275
267
|
*/
|
|
276
268
|
authSessionValidity?: pulumi.Input<number>;
|
|
277
269
|
/**
|
|
278
|
-
* List of allowed callback URLs for the identity providers.
|
|
270
|
+
* List of allowed callback URLs for the identity providers. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
279
271
|
*/
|
|
280
272
|
callbackUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
281
273
|
/**
|
|
@@ -283,11 +275,11 @@ export interface UserPoolClientState {
|
|
|
283
275
|
*/
|
|
284
276
|
clientSecret?: pulumi.Input<string>;
|
|
285
277
|
/**
|
|
286
|
-
* Default redirect URI
|
|
278
|
+
* Default redirect URI and must be included in the list of callback URLs.
|
|
287
279
|
*/
|
|
288
280
|
defaultRedirectUri?: pulumi.Input<string>;
|
|
289
281
|
/**
|
|
290
|
-
*
|
|
282
|
+
* Enables the propagation of additional user context data.
|
|
291
283
|
*/
|
|
292
284
|
enablePropagateAdditionalUserContextData?: pulumi.Input<boolean>;
|
|
293
285
|
/**
|
|
@@ -295,21 +287,19 @@ export interface UserPoolClientState {
|
|
|
295
287
|
*/
|
|
296
288
|
enableTokenRevocation?: pulumi.Input<boolean>;
|
|
297
289
|
/**
|
|
298
|
-
* List of authentication flows
|
|
290
|
+
* List of authentication flows. The available options include ADMIN_NO_SRP_AUTH, CUSTOM_AUTH_FLOW_ONLY, USER_PASSWORD_AUTH, ALLOW_ADMIN_USER_PASSWORD_AUTH, ALLOW_CUSTOM_AUTH, ALLOW_USER_PASSWORD_AUTH, ALLOW_USER_SRP_AUTH, and ALLOW_REFRESH_TOKEN_AUTH.
|
|
299
291
|
*/
|
|
300
292
|
explicitAuthFlows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
301
293
|
/**
|
|
302
|
-
*
|
|
294
|
+
* Boolean flag indicating whether an application secret should be generated.
|
|
303
295
|
*/
|
|
304
296
|
generateSecret?: pulumi.Input<boolean>;
|
|
305
297
|
/**
|
|
306
|
-
* Time limit, between 5 minutes and 1 day, after which the ID token is no longer valid and cannot be used.
|
|
307
|
-
* By default, the unit is hours.
|
|
308
|
-
* The unit can be overridden by a value in `token_validity_units.id_token`.
|
|
298
|
+
* Time limit, between 5 minutes and 1 day, after which the ID token is no longer valid and cannot be used. By default, the unit is hours. The unit can be overridden by a value in `token_validity_units.id_token`.
|
|
309
299
|
*/
|
|
310
300
|
idTokenValidity?: pulumi.Input<number>;
|
|
311
301
|
/**
|
|
312
|
-
* List of allowed logout URLs for the identity providers.
|
|
302
|
+
* List of allowed logout URLs for the identity providers. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
313
303
|
*/
|
|
314
304
|
logoutUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
315
305
|
/**
|
|
@@ -317,25 +307,23 @@ export interface UserPoolClientState {
|
|
|
317
307
|
*/
|
|
318
308
|
name?: pulumi.Input<string>;
|
|
319
309
|
/**
|
|
320
|
-
*
|
|
310
|
+
* Setting determines the errors and responses returned by Cognito APIs when a user does not exist in the user pool during authentication, account confirmation, and password recovery.
|
|
321
311
|
*/
|
|
322
312
|
preventUserExistenceErrors?: pulumi.Input<string>;
|
|
323
313
|
/**
|
|
324
|
-
* List of user pool attributes the application client can read from.
|
|
314
|
+
* List of user pool attributes that the application client can read from.
|
|
325
315
|
*/
|
|
326
316
|
readAttributes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
327
317
|
/**
|
|
328
|
-
* Time limit, between 60 minutes and 10 years, after which the refresh token is no longer valid and cannot be used.
|
|
329
|
-
* By default, the unit is days.
|
|
330
|
-
* The unit can be overridden by a value in `token_validity_units.refresh_token`.
|
|
318
|
+
* Time limit, between 60 minutes and 10 years, after which the refresh token is no longer valid and cannot be used. By default, the unit is days. The unit can be overridden by a value in `token_validity_units.refresh_token`.
|
|
331
319
|
*/
|
|
332
320
|
refreshTokenValidity?: pulumi.Input<number>;
|
|
333
321
|
/**
|
|
334
|
-
* List of provider names for the identity providers that are supported on this client.
|
|
322
|
+
* List of provider names for the identity providers that are supported on this client. It uses the `providerName` attribute of the `aws.cognito.IdentityProvider` resource(s), or the equivalent string(s).
|
|
335
323
|
*/
|
|
336
324
|
supportedIdentityProviders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
337
325
|
/**
|
|
338
|
-
* Configuration block for
|
|
326
|
+
* Configuration block for representing the validity times in units. See details below. Detailed below.
|
|
339
327
|
*/
|
|
340
328
|
tokenValidityUnits?: pulumi.Input<inputs.cognito.UserPoolClientTokenValidityUnits>;
|
|
341
329
|
/**
|
|
@@ -345,7 +333,7 @@ export interface UserPoolClientState {
|
|
|
345
333
|
*/
|
|
346
334
|
userPoolId?: pulumi.Input<string>;
|
|
347
335
|
/**
|
|
348
|
-
* List of user pool attributes the application client can write to.
|
|
336
|
+
* List of user pool attributes that the application client can write to.
|
|
349
337
|
*/
|
|
350
338
|
writeAttributes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
351
339
|
}
|
|
@@ -354,41 +342,39 @@ export interface UserPoolClientState {
|
|
|
354
342
|
*/
|
|
355
343
|
export interface UserPoolClientArgs {
|
|
356
344
|
/**
|
|
357
|
-
* Time limit, between 5 minutes and 1 day, after which the access token is no longer valid and cannot be used.
|
|
358
|
-
* By default, the unit is hours.
|
|
359
|
-
* The unit can be overridden by a value in `token_validity_units.access_token`.
|
|
345
|
+
* Time limit, between 5 minutes and 1 day, after which the access token is no longer valid and cannot be used. By default, the unit is hours. The unit can be overridden by a value in `token_validity_units.access_token`.
|
|
360
346
|
*/
|
|
361
347
|
accessTokenValidity?: pulumi.Input<number>;
|
|
362
348
|
/**
|
|
363
|
-
* List of allowed OAuth flows
|
|
349
|
+
* List of allowed OAuth flows, including `code`, `implicit`, and `clientCredentials`. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
364
350
|
*/
|
|
365
351
|
allowedOauthFlows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
366
352
|
/**
|
|
367
|
-
* Whether the client is allowed to
|
|
353
|
+
* Whether the client is allowed to use OAuth 2.0 features. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure the following arguments: `callbackUrls`, `logoutUrls`, `allowedOauthScopes` and `allowedOauthFlows`.
|
|
368
354
|
*/
|
|
369
355
|
allowedOauthFlowsUserPoolClient?: pulumi.Input<boolean>;
|
|
370
356
|
/**
|
|
371
|
-
* List of allowed OAuth scopes
|
|
357
|
+
* List of allowed OAuth scopes, including `phone`, `email`, `openid`, `profile`, and `aws.cognito.signin.user.admin`. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
372
358
|
*/
|
|
373
359
|
allowedOauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
374
360
|
/**
|
|
375
|
-
* Configuration block for Amazon Pinpoint analytics
|
|
361
|
+
* Configuration block for Amazon Pinpoint analytics that collects metrics for this user pool. See details below.
|
|
376
362
|
*/
|
|
377
363
|
analyticsConfiguration?: pulumi.Input<inputs.cognito.UserPoolClientAnalyticsConfiguration>;
|
|
378
364
|
/**
|
|
379
|
-
*
|
|
365
|
+
* Duration, in minutes, of the session token created by Amazon Cognito for each API request in an authentication flow. The session token must be responded to by the native user of the user pool before it expires. Valid values for `authSessionValidity` are between `3` and `15`, with a default value of `3`.
|
|
380
366
|
*/
|
|
381
367
|
authSessionValidity?: pulumi.Input<number>;
|
|
382
368
|
/**
|
|
383
|
-
* List of allowed callback URLs for the identity providers.
|
|
369
|
+
* List of allowed callback URLs for the identity providers. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
384
370
|
*/
|
|
385
371
|
callbackUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
386
372
|
/**
|
|
387
|
-
* Default redirect URI
|
|
373
|
+
* Default redirect URI and must be included in the list of callback URLs.
|
|
388
374
|
*/
|
|
389
375
|
defaultRedirectUri?: pulumi.Input<string>;
|
|
390
376
|
/**
|
|
391
|
-
*
|
|
377
|
+
* Enables the propagation of additional user context data.
|
|
392
378
|
*/
|
|
393
379
|
enablePropagateAdditionalUserContextData?: pulumi.Input<boolean>;
|
|
394
380
|
/**
|
|
@@ -396,21 +382,19 @@ export interface UserPoolClientArgs {
|
|
|
396
382
|
*/
|
|
397
383
|
enableTokenRevocation?: pulumi.Input<boolean>;
|
|
398
384
|
/**
|
|
399
|
-
* List of authentication flows
|
|
385
|
+
* List of authentication flows. The available options include ADMIN_NO_SRP_AUTH, CUSTOM_AUTH_FLOW_ONLY, USER_PASSWORD_AUTH, ALLOW_ADMIN_USER_PASSWORD_AUTH, ALLOW_CUSTOM_AUTH, ALLOW_USER_PASSWORD_AUTH, ALLOW_USER_SRP_AUTH, and ALLOW_REFRESH_TOKEN_AUTH.
|
|
400
386
|
*/
|
|
401
387
|
explicitAuthFlows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
402
388
|
/**
|
|
403
|
-
*
|
|
389
|
+
* Boolean flag indicating whether an application secret should be generated.
|
|
404
390
|
*/
|
|
405
391
|
generateSecret?: pulumi.Input<boolean>;
|
|
406
392
|
/**
|
|
407
|
-
* Time limit, between 5 minutes and 1 day, after which the ID token is no longer valid and cannot be used.
|
|
408
|
-
* By default, the unit is hours.
|
|
409
|
-
* The unit can be overridden by a value in `token_validity_units.id_token`.
|
|
393
|
+
* Time limit, between 5 minutes and 1 day, after which the ID token is no longer valid and cannot be used. By default, the unit is hours. The unit can be overridden by a value in `token_validity_units.id_token`.
|
|
410
394
|
*/
|
|
411
395
|
idTokenValidity?: pulumi.Input<number>;
|
|
412
396
|
/**
|
|
413
|
-
* List of allowed logout URLs for the identity providers.
|
|
397
|
+
* List of allowed logout URLs for the identity providers. `allowedOauthFlowsUserPoolClient` must be set to `true` before you can configure this option.
|
|
414
398
|
*/
|
|
415
399
|
logoutUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
416
400
|
/**
|
|
@@ -418,25 +402,23 @@ export interface UserPoolClientArgs {
|
|
|
418
402
|
*/
|
|
419
403
|
name?: pulumi.Input<string>;
|
|
420
404
|
/**
|
|
421
|
-
*
|
|
405
|
+
* Setting determines the errors and responses returned by Cognito APIs when a user does not exist in the user pool during authentication, account confirmation, and password recovery.
|
|
422
406
|
*/
|
|
423
407
|
preventUserExistenceErrors?: pulumi.Input<string>;
|
|
424
408
|
/**
|
|
425
|
-
* List of user pool attributes the application client can read from.
|
|
409
|
+
* List of user pool attributes that the application client can read from.
|
|
426
410
|
*/
|
|
427
411
|
readAttributes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
428
412
|
/**
|
|
429
|
-
* Time limit, between 60 minutes and 10 years, after which the refresh token is no longer valid and cannot be used.
|
|
430
|
-
* By default, the unit is days.
|
|
431
|
-
* The unit can be overridden by a value in `token_validity_units.refresh_token`.
|
|
413
|
+
* Time limit, between 60 minutes and 10 years, after which the refresh token is no longer valid and cannot be used. By default, the unit is days. The unit can be overridden by a value in `token_validity_units.refresh_token`.
|
|
432
414
|
*/
|
|
433
415
|
refreshTokenValidity?: pulumi.Input<number>;
|
|
434
416
|
/**
|
|
435
|
-
* List of provider names for the identity providers that are supported on this client.
|
|
417
|
+
* List of provider names for the identity providers that are supported on this client. It uses the `providerName` attribute of the `aws.cognito.IdentityProvider` resource(s), or the equivalent string(s).
|
|
436
418
|
*/
|
|
437
419
|
supportedIdentityProviders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
438
420
|
/**
|
|
439
|
-
* Configuration block for
|
|
421
|
+
* Configuration block for representing the validity times in units. See details below. Detailed below.
|
|
440
422
|
*/
|
|
441
423
|
tokenValidityUnits?: pulumi.Input<inputs.cognito.UserPoolClientTokenValidityUnits>;
|
|
442
424
|
/**
|
|
@@ -446,7 +428,7 @@ export interface UserPoolClientArgs {
|
|
|
446
428
|
*/
|
|
447
429
|
userPoolId: pulumi.Input<string>;
|
|
448
430
|
/**
|
|
449
|
-
* List of user pool attributes the application client can write to.
|
|
431
|
+
* List of user pool attributes that the application client can write to.
|
|
450
432
|
*/
|
|
451
433
|
writeAttributes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
452
434
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userPoolClient.js","sourceRoot":"","sources":["../../cognito/userPoolClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqHG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"userPoolClient.js","sourceRoot":"","sources":["../../cognito/userPoolClient.ts"],"names":[],"mappings":"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"}
|
package/datazone/project.d.ts
CHANGED
|
@@ -18,10 +18,10 @@ import * as outputs from "../types/output";
|
|
|
18
18
|
*
|
|
19
19
|
* ## Import
|
|
20
20
|
*
|
|
21
|
-
* Using `pulumi import`, import DataZone Project using
|
|
21
|
+
* Using `pulumi import`, import DataZone Project using a colon-delimited string combining `domain_id` and `id`. For example:
|
|
22
22
|
*
|
|
23
23
|
* ```sh
|
|
24
|
-
* $ pulumi import aws:datazone/project:Project example
|
|
24
|
+
* $ pulumi import aws:datazone/project:Project example domain-1234:project-1234
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
27
27
|
export declare class Project extends pulumi.CustomResource {
|
|
@@ -53,7 +53,7 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
53
53
|
*/
|
|
54
54
|
readonly description: pulumi.Output<string | undefined>;
|
|
55
55
|
/**
|
|
56
|
-
* Identifier of domain which the project is part of. Must follow the regex of
|
|
56
|
+
* Identifier of domain which the project is part of. Must follow the regex of `^dzd[-_][a-zA-Z0-9_-]{1,36}$`.
|
|
57
57
|
*/
|
|
58
58
|
readonly domainIdentifier: pulumi.Output<string>;
|
|
59
59
|
/**
|
|
@@ -61,7 +61,7 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
61
61
|
*/
|
|
62
62
|
readonly failureReasons: pulumi.Output<outputs.datazone.ProjectFailureReason[]>;
|
|
63
63
|
/**
|
|
64
|
-
* List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of [a-zA-Z0-9_-]{1,36}
|
|
64
|
+
* List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of `[a-zA-Z0-9_-]{1,36}$`.
|
|
65
65
|
*/
|
|
66
66
|
readonly glossaryTerms: pulumi.Output<string[] | undefined>;
|
|
67
67
|
/**
|
|
@@ -69,13 +69,13 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
69
69
|
*/
|
|
70
70
|
readonly lastUpdatedAt: pulumi.Output<string>;
|
|
71
71
|
/**
|
|
72
|
-
* Name of the project. Must follow the regex of
|
|
72
|
+
* Name of the project. Must follow the regex of `^[\w -]+$`. and have a length of at most 64.
|
|
73
73
|
*
|
|
74
74
|
* The following arguments are optional:
|
|
75
75
|
*/
|
|
76
76
|
readonly name: pulumi.Output<string>;
|
|
77
77
|
/**
|
|
78
|
-
* Enum that conveys state of project. Can be ACTIVE
|
|
78
|
+
* Enum that conveys state of project. Can be `ACTIVE`, `DELETING`, or `DELETE_FAILED`.
|
|
79
79
|
*/
|
|
80
80
|
readonly projectStatus: pulumi.Output<string>;
|
|
81
81
|
/**
|
|
@@ -109,7 +109,7 @@ export interface ProjectState {
|
|
|
109
109
|
*/
|
|
110
110
|
description?: pulumi.Input<string>;
|
|
111
111
|
/**
|
|
112
|
-
* Identifier of domain which the project is part of. Must follow the regex of
|
|
112
|
+
* Identifier of domain which the project is part of. Must follow the regex of `^dzd[-_][a-zA-Z0-9_-]{1,36}$`.
|
|
113
113
|
*/
|
|
114
114
|
domainIdentifier?: pulumi.Input<string>;
|
|
115
115
|
/**
|
|
@@ -117,7 +117,7 @@ export interface ProjectState {
|
|
|
117
117
|
*/
|
|
118
118
|
failureReasons?: pulumi.Input<pulumi.Input<inputs.datazone.ProjectFailureReason>[]>;
|
|
119
119
|
/**
|
|
120
|
-
* List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of [a-zA-Z0-9_-]{1,36}
|
|
120
|
+
* List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of `[a-zA-Z0-9_-]{1,36}$`.
|
|
121
121
|
*/
|
|
122
122
|
glossaryTerms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123
123
|
/**
|
|
@@ -125,13 +125,13 @@ export interface ProjectState {
|
|
|
125
125
|
*/
|
|
126
126
|
lastUpdatedAt?: pulumi.Input<string>;
|
|
127
127
|
/**
|
|
128
|
-
* Name of the project. Must follow the regex of
|
|
128
|
+
* Name of the project. Must follow the regex of `^[\w -]+$`. and have a length of at most 64.
|
|
129
129
|
*
|
|
130
130
|
* The following arguments are optional:
|
|
131
131
|
*/
|
|
132
132
|
name?: pulumi.Input<string>;
|
|
133
133
|
/**
|
|
134
|
-
* Enum that conveys state of project. Can be ACTIVE
|
|
134
|
+
* Enum that conveys state of project. Can be `ACTIVE`, `DELETING`, or `DELETE_FAILED`.
|
|
135
135
|
*/
|
|
136
136
|
projectStatus?: pulumi.Input<string>;
|
|
137
137
|
/**
|
|
@@ -149,15 +149,15 @@ export interface ProjectArgs {
|
|
|
149
149
|
*/
|
|
150
150
|
description?: pulumi.Input<string>;
|
|
151
151
|
/**
|
|
152
|
-
* Identifier of domain which the project is part of. Must follow the regex of
|
|
152
|
+
* Identifier of domain which the project is part of. Must follow the regex of `^dzd[-_][a-zA-Z0-9_-]{1,36}$`.
|
|
153
153
|
*/
|
|
154
154
|
domainIdentifier: pulumi.Input<string>;
|
|
155
155
|
/**
|
|
156
|
-
* List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of [a-zA-Z0-9_-]{1,36}
|
|
156
|
+
* List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of `[a-zA-Z0-9_-]{1,36}$`.
|
|
157
157
|
*/
|
|
158
158
|
glossaryTerms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Name of the project. Must follow the regex of
|
|
160
|
+
* Name of the project. Must follow the regex of `^[\w -]+$`. and have a length of at most 64.
|
|
161
161
|
*
|
|
162
162
|
* The following arguments are optional:
|
|
163
163
|
*/
|
package/datazone/project.js
CHANGED
|
@@ -22,10 +22,10 @@ const utilities = require("../utilities");
|
|
|
22
22
|
*
|
|
23
23
|
* ## Import
|
|
24
24
|
*
|
|
25
|
-
* Using `pulumi import`, import DataZone Project using
|
|
25
|
+
* Using `pulumi import`, import DataZone Project using a colon-delimited string combining `domain_id` and `id`. For example:
|
|
26
26
|
*
|
|
27
27
|
* ```sh
|
|
28
|
-
* $ pulumi import aws:datazone/project:Project example
|
|
28
|
+
* $ pulumi import aws:datazone/project:Project example domain-1234:project-1234
|
|
29
29
|
* ```
|
|
30
30
|
*/
|
|
31
31
|
class Project extends pulumi.CustomResource {
|
package/ecs/service.d.ts
CHANGED
|
@@ -181,6 +181,7 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
181
181
|
readonly forceDelete: pulumi.Output<boolean | undefined>;
|
|
182
182
|
/**
|
|
183
183
|
* Enable to force a new task deployment of the service. This can be used to update tasks to use a newer Docker image with same image/tag combination (e.g., `myimage:latest`), roll Fargate tasks onto a newer platform version, or immediately deploy `orderedPlacementStrategy` and `placementConstraints` updates.
|
|
184
|
+
* When using the forceNewDeployment property you also need to configure the triggers property.
|
|
184
185
|
*/
|
|
185
186
|
readonly forceNewDeployment: pulumi.Output<boolean | undefined>;
|
|
186
187
|
/**
|
|
@@ -328,6 +329,7 @@ export interface ServiceState {
|
|
|
328
329
|
forceDelete?: pulumi.Input<boolean>;
|
|
329
330
|
/**
|
|
330
331
|
* Enable to force a new task deployment of the service. This can be used to update tasks to use a newer Docker image with same image/tag combination (e.g., `myimage:latest`), roll Fargate tasks onto a newer platform version, or immediately deploy `orderedPlacementStrategy` and `placementConstraints` updates.
|
|
332
|
+
* When using the forceNewDeployment property you also need to configure the triggers property.
|
|
331
333
|
*/
|
|
332
334
|
forceNewDeployment?: pulumi.Input<boolean>;
|
|
333
335
|
/**
|
|
@@ -467,6 +469,7 @@ export interface ServiceArgs {
|
|
|
467
469
|
forceDelete?: pulumi.Input<boolean>;
|
|
468
470
|
/**
|
|
469
471
|
* Enable to force a new task deployment of the service. This can be used to update tasks to use a newer Docker image with same image/tag combination (e.g., `myimage:latest`), roll Fargate tasks onto a newer platform version, or immediately deploy `orderedPlacementStrategy` and `placementConstraints` updates.
|
|
472
|
+
* When using the forceNewDeployment property you also need to configure the triggers property.
|
|
470
473
|
*/
|
|
471
474
|
forceNewDeployment?: pulumi.Input<boolean>;
|
|
472
475
|
/**
|
package/ecs/service.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../ecs/service.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqHG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../ecs/service.ts"],"names":[],"mappings":"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"}
|
package/grafana/workspace.d.ts
CHANGED
|
@@ -34,6 +34,32 @@ import * as outputs from "../types/output";
|
|
|
34
34
|
* });
|
|
35
35
|
* ```
|
|
36
36
|
*
|
|
37
|
+
* ### Workspace configuration options
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as aws from "@pulumi/aws";
|
|
42
|
+
*
|
|
43
|
+
* const example = new aws.grafana.Workspace("example", {
|
|
44
|
+
* accountAccessType: "CURRENT_ACCOUNT",
|
|
45
|
+
* authenticationProviders: ["SAML"],
|
|
46
|
+
* permissionType: "SERVICE_MANAGED",
|
|
47
|
+
* roleArn: assume.arn,
|
|
48
|
+
* configuration: JSON.stringify({
|
|
49
|
+
* plugins: {
|
|
50
|
+
* pluginAdminEnabled: true,
|
|
51
|
+
* },
|
|
52
|
+
* unifiedAlerting: {
|
|
53
|
+
* enabled: false,
|
|
54
|
+
* },
|
|
55
|
+
* }),
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* The optional argument `configuration` is a JSON string that enables the unified `Grafana Alerting` (Grafana version 10 or newer) and `Plugins Management` (Grafana version 9 or newer) on the Grafana Workspaces.
|
|
60
|
+
*
|
|
61
|
+
* For more information about using Grafana alerting, and the effects of turning it on or off, see [Alerts in Grafana version 10](https://docs.aws.amazon.com/grafana/latest/userguide/v10-alerts.html).
|
|
62
|
+
*
|
|
37
63
|
* ## Import
|
|
38
64
|
*
|
|
39
65
|
* Using `pulumi import`, import Grafana Workspace using the workspace's `id`. For example:
|