@pulumi/aws 6.74.0-alpha.1742907058 → 6.74.0-alpha.1743013901
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/alb/getLoadBalancer.d.ts +1 -0
- package/alb/getLoadBalancer.js.map +1 -1
- package/alb/loadBalancer.d.ts +12 -0
- package/alb/loadBalancer.js +2 -0
- package/alb/loadBalancer.js.map +1 -1
- package/apigateway/getApiKeys.d.ts +72 -0
- package/apigateway/getApiKeys.js +50 -0
- package/apigateway/getApiKeys.js.map +1 -0
- package/apigateway/index.d.ts +3 -0
- package/apigateway/index.js +4 -1
- package/apigateway/index.js.map +1 -1
- package/apigateway/restApiPolicy.d.ts +1 -1
- package/apigateway/restApiPolicy.js +1 -1
- package/athena/capacityReservation.d.ts +156 -0
- package/athena/capacityReservation.js +93 -0
- package/athena/capacityReservation.js.map +1 -0
- package/athena/index.d.ts +3 -0
- package/athena/index.js +6 -1
- package/athena/index.js.map +1 -1
- package/connect/user.d.ts +1 -0
- package/connect/user.js +1 -0
- package/connect/user.js.map +1 -1
- package/datazone/environment.d.ts +9 -0
- package/datazone/environment.js.map +1 -1
- package/ebs/getVolume.d.ts +7 -3
- package/ebs/getVolume.js.map +1 -1
- package/ebs/volume.d.ts +37 -31
- package/ebs/volume.js +2 -2
- package/ebs/volume.js.map +1 -1
- package/eks/getClusterVersions.d.ts +145 -0
- package/eks/getClusterVersions.js +104 -0
- package/eks/getClusterVersions.js.map +1 -0
- package/eks/index.d.ts +3 -0
- package/eks/index.js +4 -1
- package/eks/index.js.map +1 -1
- package/glue/job.d.ts +2 -0
- package/glue/job.js +2 -0
- package/glue/job.js.map +1 -1
- package/identitystore/getGroupMemberships.d.ts +105 -0
- package/identitystore/getGroupMemberships.js +78 -0
- package/identitystore/getGroupMemberships.js.map +1 -0
- package/identitystore/getUsers.d.ts +70 -0
- package/identitystore/getUsers.js +56 -0
- package/identitystore/getUsers.js.map +1 -0
- package/identitystore/index.d.ts +6 -0
- package/identitystore/index.js +7 -1
- package/identitystore/index.js.map +1 -1
- package/kendra/dataSource.d.ts +39 -6
- package/kendra/dataSource.js +33 -0
- package/kendra/dataSource.js.map +1 -1
- package/kendra/index_.d.ts +3 -3
- package/lb/getLoadBalancer.d.ts +1 -0
- package/lb/getLoadBalancer.js.map +1 -1
- package/lb/loadBalancer.d.ts +12 -0
- package/lb/loadBalancer.js +2 -0
- package/lb/loadBalancer.js.map +1 -1
- package/package.json +2 -2
- package/rds/getInstance.d.ts +4 -0
- package/rds/getInstance.js.map +1 -1
- package/rds/instance.d.ts +12 -0
- package/rds/instance.js +2 -0
- package/rds/instance.js.map +1 -1
- package/types/input.d.ts +47 -3
- package/types/input.js.map +1 -1
- package/types/output.d.ts +323 -3
- package/types/output.js.map +1 -1
- package/wafv2/ruleGroup.d.ts +9 -0
- package/wafv2/ruleGroup.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -359,6 +359,9 @@ export declare namespace alb {
|
|
|
359
359
|
enabled: boolean;
|
|
360
360
|
prefix: string;
|
|
361
361
|
}
|
|
362
|
+
interface GetLoadBalancerIpamPool {
|
|
363
|
+
ipv4IpamPoolId: string;
|
|
364
|
+
}
|
|
362
365
|
interface GetLoadBalancerSubnetMapping {
|
|
363
366
|
allocationId: string;
|
|
364
367
|
ipv6Address: string;
|
|
@@ -889,6 +892,12 @@ export declare namespace alb {
|
|
|
889
892
|
*/
|
|
890
893
|
prefix?: string;
|
|
891
894
|
}
|
|
895
|
+
interface LoadBalancerIpamPools {
|
|
896
|
+
/**
|
|
897
|
+
* The ID of the IPv4 IPAM pool.
|
|
898
|
+
*/
|
|
899
|
+
ipv4IpamPoolId: string;
|
|
900
|
+
}
|
|
892
901
|
interface LoadBalancerSubnetMapping {
|
|
893
902
|
/**
|
|
894
903
|
* Allocation ID of the Elastic IP address for an internet-facing load balancer.
|
|
@@ -1263,6 +1272,47 @@ export declare namespace apigateway {
|
|
|
1263
1272
|
*/
|
|
1264
1273
|
truststoreVersion?: string;
|
|
1265
1274
|
}
|
|
1275
|
+
interface GetApiKeysItem {
|
|
1276
|
+
/**
|
|
1277
|
+
* Date and time when the API Key was created.
|
|
1278
|
+
*/
|
|
1279
|
+
createdDate: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* Amazon Web Services Marketplace customer identifier, when integrating with the Amazon Web Services SaaS Marketplace.
|
|
1282
|
+
*/
|
|
1283
|
+
customerId: string;
|
|
1284
|
+
/**
|
|
1285
|
+
* Description of the API Key.
|
|
1286
|
+
*/
|
|
1287
|
+
description: string;
|
|
1288
|
+
/**
|
|
1289
|
+
* Whether the API Key is enabled.
|
|
1290
|
+
*/
|
|
1291
|
+
enabled: boolean;
|
|
1292
|
+
/**
|
|
1293
|
+
* ID of the API Key.
|
|
1294
|
+
*/
|
|
1295
|
+
id: string;
|
|
1296
|
+
/**
|
|
1297
|
+
* Date and time when the API Key was last updated.
|
|
1298
|
+
*/
|
|
1299
|
+
lastUpdatedDate: string;
|
|
1300
|
+
/**
|
|
1301
|
+
* Name of the API Key.
|
|
1302
|
+
*/
|
|
1303
|
+
name: string;
|
|
1304
|
+
stageKeys: string[];
|
|
1305
|
+
/**
|
|
1306
|
+
* Map of tags for the resource.
|
|
1307
|
+
*/
|
|
1308
|
+
tags: {
|
|
1309
|
+
[key: string]: string;
|
|
1310
|
+
};
|
|
1311
|
+
/**
|
|
1312
|
+
* Value of the API Key.
|
|
1313
|
+
*/
|
|
1314
|
+
value: string;
|
|
1315
|
+
}
|
|
1266
1316
|
interface GetDomainNameEndpointConfiguration {
|
|
1267
1317
|
/**
|
|
1268
1318
|
* List of endpoint types.
|
|
@@ -7283,6 +7333,20 @@ export declare namespace appsync {
|
|
|
7283
7333
|
}
|
|
7284
7334
|
}
|
|
7285
7335
|
export declare namespace athena {
|
|
7336
|
+
interface CapacityReservationTimeouts {
|
|
7337
|
+
/**
|
|
7338
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7339
|
+
*/
|
|
7340
|
+
create?: string;
|
|
7341
|
+
/**
|
|
7342
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
7343
|
+
*/
|
|
7344
|
+
delete?: string;
|
|
7345
|
+
/**
|
|
7346
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7347
|
+
*/
|
|
7348
|
+
update?: string;
|
|
7349
|
+
}
|
|
7286
7350
|
interface DatabaseAclConfiguration {
|
|
7287
7351
|
/**
|
|
7288
7352
|
* Amazon S3 canned ACL that Athena should specify when storing query results. Valid value is `BUCKET_OWNER_FULL_CONTROL`.
|
|
@@ -20046,6 +20110,10 @@ export declare namespace connect {
|
|
|
20046
20110
|
* The last name.
|
|
20047
20111
|
*/
|
|
20048
20112
|
lastName: string;
|
|
20113
|
+
/**
|
|
20114
|
+
* The secondary email address. If present, email notifications will be sent to this email address instead of the primary one.
|
|
20115
|
+
*/
|
|
20116
|
+
secondaryEmail: string;
|
|
20049
20117
|
}
|
|
20050
20118
|
interface GetUserPhoneConfig {
|
|
20051
20119
|
/**
|
|
@@ -20484,6 +20552,10 @@ export declare namespace connect {
|
|
|
20484
20552
|
* The last name. This is required if you are using Amazon Connect or SAML for identity management. Minimum length of 1. Maximum length of 100.
|
|
20485
20553
|
*/
|
|
20486
20554
|
lastName?: string;
|
|
20555
|
+
/**
|
|
20556
|
+
* The secondary email address. If present, email notifications will be sent to this email address instead of the primary one.
|
|
20557
|
+
*/
|
|
20558
|
+
secondaryEmail?: string;
|
|
20487
20559
|
}
|
|
20488
20560
|
interface UserPhoneConfig {
|
|
20489
20561
|
/**
|
|
@@ -24655,11 +24727,11 @@ export declare namespace dms {
|
|
|
24655
24727
|
*/
|
|
24656
24728
|
kmsKeyId: string;
|
|
24657
24729
|
/**
|
|
24658
|
-
* Specifies the maximum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. A single DCU is 2GB of RAM, with
|
|
24730
|
+
* Specifies the maximum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. A single DCU is 2GB of RAM, with 1 DCUs as the minimum value allowed. The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384.
|
|
24659
24731
|
*/
|
|
24660
24732
|
maxCapacityUnits?: number;
|
|
24661
24733
|
/**
|
|
24662
|
-
* Specifies the minimum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384. If this value isn't set DMS
|
|
24734
|
+
* Specifies the minimum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384. If this value isn't set DMS sets the lowest allowed value, 1.
|
|
24663
24735
|
*/
|
|
24664
24736
|
minCapacityUnits?: number;
|
|
24665
24737
|
/**
|
|
@@ -33086,6 +33158,46 @@ export declare namespace eks {
|
|
|
33086
33158
|
*/
|
|
33087
33159
|
supportType: string;
|
|
33088
33160
|
}
|
|
33161
|
+
interface GetClusterVersionsClusterVersion {
|
|
33162
|
+
/**
|
|
33163
|
+
* Type of clusters to filter by.
|
|
33164
|
+
* Currently, the only valid value is `eks`.
|
|
33165
|
+
*/
|
|
33166
|
+
clusterType: string;
|
|
33167
|
+
/**
|
|
33168
|
+
* Kubernetes version supported by EKS.
|
|
33169
|
+
*/
|
|
33170
|
+
clusterVersion: string;
|
|
33171
|
+
/**
|
|
33172
|
+
* Default eks platform version for the cluster version.
|
|
33173
|
+
*/
|
|
33174
|
+
defaultPlatformVersion: string;
|
|
33175
|
+
/**
|
|
33176
|
+
* Default Kubernetes version for the cluster version.
|
|
33177
|
+
*/
|
|
33178
|
+
defaultVersion: boolean;
|
|
33179
|
+
/**
|
|
33180
|
+
* End of extended support date for the cluster version.
|
|
33181
|
+
*/
|
|
33182
|
+
endOfExtendedSupportDate: string;
|
|
33183
|
+
/**
|
|
33184
|
+
* End of standard support date for the cluster version.
|
|
33185
|
+
*/
|
|
33186
|
+
endOfStandardSupportDate: string;
|
|
33187
|
+
/**
|
|
33188
|
+
* Kubernetes patch version for the cluster version.
|
|
33189
|
+
*/
|
|
33190
|
+
kubernetesPatchVersion: string;
|
|
33191
|
+
/**
|
|
33192
|
+
* Release date of the cluster version.
|
|
33193
|
+
*/
|
|
33194
|
+
releaseDate: string;
|
|
33195
|
+
/**
|
|
33196
|
+
* Status of the EKS cluster versions to list.
|
|
33197
|
+
* Valid values are `STANDARD_SUPPORT` or `UNSUPPORTED` or `EXTENDED_SUPPORT`.
|
|
33198
|
+
*/
|
|
33199
|
+
versionStatus: string;
|
|
33200
|
+
}
|
|
33089
33201
|
interface GetClusterVpcConfig {
|
|
33090
33202
|
/**
|
|
33091
33203
|
* The cluster security group that was created by Amazon EKS for the cluster.
|
|
@@ -38104,7 +38216,7 @@ export declare namespace glue {
|
|
|
38104
38216
|
*/
|
|
38105
38217
|
name?: string;
|
|
38106
38218
|
/**
|
|
38107
|
-
* The Python version being used to execute a Python shell job. Allowed values are 2, 3 or 3.9. Version 3 refers to Python 3.
|
|
38219
|
+
* The Python version being used to execute a Python shell job. Allowed values are 2, 3 or 3.9. Version 3 refers to Python 3.11 when `glueVersion` is set to 5.0.
|
|
38108
38220
|
*/
|
|
38109
38221
|
pythonVersion: string;
|
|
38110
38222
|
/**
|
|
@@ -38921,6 +39033,27 @@ export declare namespace identitystore {
|
|
|
38921
39033
|
*/
|
|
38922
39034
|
attributeValue: string;
|
|
38923
39035
|
}
|
|
39036
|
+
interface GetGroupMembershipsGroupMembership {
|
|
39037
|
+
/**
|
|
39038
|
+
* The identifier for a group in the Identity Store.
|
|
39039
|
+
*/
|
|
39040
|
+
groupId: string;
|
|
39041
|
+
/**
|
|
39042
|
+
* Identity Store ID associated with the Single Sign-On Instance.
|
|
39043
|
+
*/
|
|
39044
|
+
identityStoreId: string;
|
|
39045
|
+
/**
|
|
39046
|
+
* An object containing the identifier of a group member. See `memberId` below.
|
|
39047
|
+
*/
|
|
39048
|
+
memberId: outputs.identitystore.GetGroupMembershipsGroupMembershipMemberId;
|
|
39049
|
+
membershipId: string;
|
|
39050
|
+
}
|
|
39051
|
+
interface GetGroupMembershipsGroupMembershipMemberId {
|
|
39052
|
+
/**
|
|
39053
|
+
* User identifier of the group member.
|
|
39054
|
+
*/
|
|
39055
|
+
userId: string;
|
|
39056
|
+
}
|
|
38924
39057
|
interface GetGroupsGroup {
|
|
38925
39058
|
/**
|
|
38926
39059
|
* Description of the specified group.
|
|
@@ -39093,6 +39226,170 @@ export declare namespace identitystore {
|
|
|
39093
39226
|
*/
|
|
39094
39227
|
value: string;
|
|
39095
39228
|
}
|
|
39229
|
+
interface GetUsersUser {
|
|
39230
|
+
/**
|
|
39231
|
+
* List of details about the user's address.
|
|
39232
|
+
*/
|
|
39233
|
+
addresses: outputs.identitystore.GetUsersUserAddress[];
|
|
39234
|
+
/**
|
|
39235
|
+
* Name that is typically displayed when the user is referenced.
|
|
39236
|
+
*/
|
|
39237
|
+
displayName: string;
|
|
39238
|
+
/**
|
|
39239
|
+
* List of details about the user's email.
|
|
39240
|
+
*/
|
|
39241
|
+
emails: outputs.identitystore.GetUsersUserEmail[];
|
|
39242
|
+
/**
|
|
39243
|
+
* List of identifiers issued to this resource by an external identity provider.
|
|
39244
|
+
*/
|
|
39245
|
+
externalIds: outputs.identitystore.GetUsersUserExternalId[];
|
|
39246
|
+
/**
|
|
39247
|
+
* Identity Store ID associated with the Single Sign-On Instance.
|
|
39248
|
+
*/
|
|
39249
|
+
identityStoreId: string;
|
|
39250
|
+
/**
|
|
39251
|
+
* User's geographical region or location.
|
|
39252
|
+
*/
|
|
39253
|
+
locale: string;
|
|
39254
|
+
/**
|
|
39255
|
+
* Details about the user's full name.
|
|
39256
|
+
*/
|
|
39257
|
+
names: outputs.identitystore.GetUsersUserName[];
|
|
39258
|
+
/**
|
|
39259
|
+
* An alternate name for the user.
|
|
39260
|
+
*/
|
|
39261
|
+
nickname: string;
|
|
39262
|
+
/**
|
|
39263
|
+
* List of details about the user's phone number.
|
|
39264
|
+
*/
|
|
39265
|
+
phoneNumbers: outputs.identitystore.GetUsersUserPhoneNumber[];
|
|
39266
|
+
/**
|
|
39267
|
+
* Preferred language of the user.
|
|
39268
|
+
*/
|
|
39269
|
+
preferredLanguage: string;
|
|
39270
|
+
/**
|
|
39271
|
+
* An URL that may be associated with the user.
|
|
39272
|
+
*/
|
|
39273
|
+
profileUrl: string;
|
|
39274
|
+
/**
|
|
39275
|
+
* User's time zone.
|
|
39276
|
+
*/
|
|
39277
|
+
timezone: string;
|
|
39278
|
+
/**
|
|
39279
|
+
* User's title.
|
|
39280
|
+
*/
|
|
39281
|
+
title: string;
|
|
39282
|
+
/**
|
|
39283
|
+
* Identifier of the user in the Identity Store.
|
|
39284
|
+
*/
|
|
39285
|
+
userId: string;
|
|
39286
|
+
/**
|
|
39287
|
+
* User's user name value.
|
|
39288
|
+
*/
|
|
39289
|
+
userName: string;
|
|
39290
|
+
/**
|
|
39291
|
+
* User type.
|
|
39292
|
+
*/
|
|
39293
|
+
userType: string;
|
|
39294
|
+
}
|
|
39295
|
+
interface GetUsersUserAddress {
|
|
39296
|
+
/**
|
|
39297
|
+
* Country that this address is in.
|
|
39298
|
+
*/
|
|
39299
|
+
country: string;
|
|
39300
|
+
/**
|
|
39301
|
+
* Name that is typically displayed when the name is shown for display.
|
|
39302
|
+
*/
|
|
39303
|
+
formatted: string;
|
|
39304
|
+
/**
|
|
39305
|
+
* Address locality.
|
|
39306
|
+
*/
|
|
39307
|
+
locality: string;
|
|
39308
|
+
/**
|
|
39309
|
+
* Postal code of the address.
|
|
39310
|
+
*/
|
|
39311
|
+
postalCode: string;
|
|
39312
|
+
/**
|
|
39313
|
+
* When `true`, this is the primary phone number associated with the user.
|
|
39314
|
+
*/
|
|
39315
|
+
primary: boolean;
|
|
39316
|
+
/**
|
|
39317
|
+
* Region of the address.
|
|
39318
|
+
*/
|
|
39319
|
+
region: string;
|
|
39320
|
+
/**
|
|
39321
|
+
* Street of the address.
|
|
39322
|
+
*/
|
|
39323
|
+
streetAddress: string;
|
|
39324
|
+
/**
|
|
39325
|
+
* Type of phone number.
|
|
39326
|
+
*/
|
|
39327
|
+
type: string;
|
|
39328
|
+
}
|
|
39329
|
+
interface GetUsersUserEmail {
|
|
39330
|
+
/**
|
|
39331
|
+
* When `true`, this is the primary phone number associated with the user.
|
|
39332
|
+
*/
|
|
39333
|
+
primary: boolean;
|
|
39334
|
+
/**
|
|
39335
|
+
* Type of phone number.
|
|
39336
|
+
*/
|
|
39337
|
+
type: string;
|
|
39338
|
+
/**
|
|
39339
|
+
* User's phone number.
|
|
39340
|
+
*/
|
|
39341
|
+
value: string;
|
|
39342
|
+
}
|
|
39343
|
+
interface GetUsersUserExternalId {
|
|
39344
|
+
/**
|
|
39345
|
+
* Identifier issued to this resource by an external identity provider.
|
|
39346
|
+
*/
|
|
39347
|
+
id: string;
|
|
39348
|
+
/**
|
|
39349
|
+
* Issuer for an external identifier.
|
|
39350
|
+
*/
|
|
39351
|
+
issuer: string;
|
|
39352
|
+
}
|
|
39353
|
+
interface GetUsersUserName {
|
|
39354
|
+
/**
|
|
39355
|
+
* Family name of the user.
|
|
39356
|
+
*/
|
|
39357
|
+
familyName: string;
|
|
39358
|
+
/**
|
|
39359
|
+
* Name that is typically displayed when the name is shown for display.
|
|
39360
|
+
*/
|
|
39361
|
+
formatted: string;
|
|
39362
|
+
/**
|
|
39363
|
+
* Given name of the user.
|
|
39364
|
+
*/
|
|
39365
|
+
givenName: string;
|
|
39366
|
+
/**
|
|
39367
|
+
* Honorific prefix of the user.
|
|
39368
|
+
*/
|
|
39369
|
+
honorificPrefix: string;
|
|
39370
|
+
/**
|
|
39371
|
+
* Honorific suffix of the user.
|
|
39372
|
+
*/
|
|
39373
|
+
honorificSuffix: string;
|
|
39374
|
+
/**
|
|
39375
|
+
* Middle name of the user.
|
|
39376
|
+
*/
|
|
39377
|
+
middleName: string;
|
|
39378
|
+
}
|
|
39379
|
+
interface GetUsersUserPhoneNumber {
|
|
39380
|
+
/**
|
|
39381
|
+
* When `true`, this is the primary phone number associated with the user.
|
|
39382
|
+
*/
|
|
39383
|
+
primary: boolean;
|
|
39384
|
+
/**
|
|
39385
|
+
* Type of phone number.
|
|
39386
|
+
*/
|
|
39387
|
+
type: string;
|
|
39388
|
+
/**
|
|
39389
|
+
* User's phone number.
|
|
39390
|
+
*/
|
|
39391
|
+
value: string;
|
|
39392
|
+
}
|
|
39096
39393
|
interface GroupExternalId {
|
|
39097
39394
|
/**
|
|
39098
39395
|
* The identifier issued to this resource by an external identity provider.
|
|
@@ -41533,11 +41830,19 @@ export declare namespace kendra {
|
|
|
41533
41830
|
interface DataSourceConfiguration {
|
|
41534
41831
|
/**
|
|
41535
41832
|
* A block that provides the configuration information to connect to an Amazon S3 bucket as your data source. Detailed below.
|
|
41833
|
+
*
|
|
41834
|
+
* @deprecated s3_configuration is deprecated. Use templateConfiguration instead.
|
|
41536
41835
|
*/
|
|
41537
41836
|
s3Configuration?: outputs.kendra.DataSourceConfigurationS3Configuration;
|
|
41538
41837
|
/**
|
|
41539
41838
|
* A block that provides the configuration information required for Amazon Kendra Web Crawler. Detailed below.
|
|
41540
41839
|
*/
|
|
41840
|
+
templateConfiguration?: outputs.kendra.DataSourceConfigurationTemplateConfiguration;
|
|
41841
|
+
/**
|
|
41842
|
+
* A block that provides the configuration information required for Amazon Kendra Web Crawler. Detailed below.
|
|
41843
|
+
*
|
|
41844
|
+
* @deprecated web_crawler_configuration is deprecated. Use templateConfiguration instead.
|
|
41845
|
+
*/
|
|
41541
41846
|
webCrawlerConfiguration?: outputs.kendra.DataSourceConfigurationWebCrawlerConfiguration;
|
|
41542
41847
|
}
|
|
41543
41848
|
interface DataSourceConfigurationS3Configuration {
|
|
@@ -41578,6 +41883,12 @@ export declare namespace kendra {
|
|
|
41578
41883
|
*/
|
|
41579
41884
|
s3Prefix?: string;
|
|
41580
41885
|
}
|
|
41886
|
+
interface DataSourceConfigurationTemplateConfiguration {
|
|
41887
|
+
/**
|
|
41888
|
+
* JSON string containing a [data source template schema](https://docs.aws.amazon.com/kendra/latest/dg/ds-schemas.html).
|
|
41889
|
+
*/
|
|
41890
|
+
template: string;
|
|
41891
|
+
}
|
|
41581
41892
|
interface DataSourceConfigurationWebCrawlerConfiguration {
|
|
41582
41893
|
/**
|
|
41583
41894
|
* A block with the configuration information required to connect to websites using authentication. You can connect to websites using basic authentication of user name and password. You use a secret in AWS Secrets Manager to store your authentication credentials. You must provide the website host name and port number. For example, the host name of `https://a.example.com/page1.html` is `"a.example.com"` and the port is `443`, the standard port for HTTPS. Detailed below.
|
|
@@ -46545,6 +46856,9 @@ export declare namespace lb {
|
|
|
46545
46856
|
enabled: boolean;
|
|
46546
46857
|
prefix: string;
|
|
46547
46858
|
}
|
|
46859
|
+
interface GetLoadBalancerIpamPool {
|
|
46860
|
+
ipv4IpamPoolId: string;
|
|
46861
|
+
}
|
|
46548
46862
|
interface GetLoadBalancerSubnetMapping {
|
|
46549
46863
|
allocationId: string;
|
|
46550
46864
|
ipv6Address: string;
|
|
@@ -47075,6 +47389,12 @@ export declare namespace lb {
|
|
|
47075
47389
|
*/
|
|
47076
47390
|
prefix?: string;
|
|
47077
47391
|
}
|
|
47392
|
+
interface LoadBalancerIpamPools {
|
|
47393
|
+
/**
|
|
47394
|
+
* The ID of the IPv4 IPAM pool.
|
|
47395
|
+
*/
|
|
47396
|
+
ipv4IpamPoolId: string;
|
|
47397
|
+
}
|
|
47078
47398
|
interface LoadBalancerSubnetMapping {
|
|
47079
47399
|
/**
|
|
47080
47400
|
* Allocation ID of the Elastic IP address for an internet-facing load balancer.
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAogzEjF,IAAiB,GAAG,CA4cnB;AA5cD,WAAiB,GAAG;IA4XhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwEL,CAAC,EA5cgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA4cnB"}
|
package/wafv2/ruleGroup.d.ts
CHANGED
|
@@ -38,6 +38,9 @@ export declare class RuleGroup extends pulumi.CustomResource {
|
|
|
38
38
|
* A friendly name of the rule group.
|
|
39
39
|
*/
|
|
40
40
|
readonly name: pulumi.Output<string>;
|
|
41
|
+
/**
|
|
42
|
+
* Creates a unique name beginning with the specified prefix. Conflicts with `name`.
|
|
43
|
+
*/
|
|
41
44
|
readonly namePrefix: pulumi.Output<string>;
|
|
42
45
|
/**
|
|
43
46
|
* The rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See Rules below for details.
|
|
@@ -99,6 +102,9 @@ export interface RuleGroupState {
|
|
|
99
102
|
* A friendly name of the rule group.
|
|
100
103
|
*/
|
|
101
104
|
name?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* Creates a unique name beginning with the specified prefix. Conflicts with `name`.
|
|
107
|
+
*/
|
|
102
108
|
namePrefix?: pulumi.Input<string>;
|
|
103
109
|
/**
|
|
104
110
|
* The rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See Rules below for details.
|
|
@@ -147,6 +153,9 @@ export interface RuleGroupArgs {
|
|
|
147
153
|
* A friendly name of the rule group.
|
|
148
154
|
*/
|
|
149
155
|
name?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* Creates a unique name beginning with the specified prefix. Conflicts with `name`.
|
|
158
|
+
*/
|
|
150
159
|
namePrefix?: pulumi.Input<string>;
|
|
151
160
|
/**
|
|
152
161
|
* The rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See Rules below for details.
|
package/wafv2/ruleGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ruleGroup.js","sourceRoot":"","sources":["../../wafv2/ruleGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"ruleGroup.js","sourceRoot":"","sources":["../../wafv2/ruleGroup.ts"],"names":[],"mappings":"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"}
|