@pulumi/aws 4.27.1 → 4.28.0-alpha.1637005539
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/amplify/branch.d.ts +2 -2
- package/amplify/branch.js +2 -2
- package/batch/jobQueue.d.ts +3 -6
- package/batch/jobQueue.js.map +1 -1
- package/cloudfront/cachePolicy.d.ts +3 -7
- package/cloudfront/cachePolicy.js +4 -1
- package/cloudfront/cachePolicy.js.map +1 -1
- package/cloudfront/fieldLevelEncryptionConfig.d.ts +129 -0
- package/cloudfront/fieldLevelEncryptionConfig.js +105 -0
- package/cloudfront/fieldLevelEncryptionConfig.js.map +1 -0
- package/cloudfront/fieldLevelEncryptionProfile.d.ts +125 -0
- package/cloudfront/fieldLevelEncryptionProfile.js +98 -0
- package/cloudfront/fieldLevelEncryptionProfile.js.map +1 -0
- package/cloudfront/function.d.ts +10 -2
- package/cloudfront/function.js +2 -0
- package/cloudfront/function.js.map +1 -1
- package/cloudfront/index.d.ts +2 -0
- package/cloudfront/index.js +10 -0
- package/cloudfront/index.js.map +1 -1
- package/cloudfront/originRequestPolicy.d.ts +0 -4
- package/cloudfront/originRequestPolicy.js +1 -1
- package/cloudfront/originRequestPolicy.js.map +1 -1
- package/cloudwatch/eventBusPolicy.d.ts +1 -1
- package/cloudwatch/eventBusPolicy.js +1 -1
- package/cloudwatch/eventPermission.d.ts +2 -0
- package/cloudwatch/eventPermission.js +2 -0
- package/cloudwatch/eventPermission.js.map +1 -1
- package/cloudwatch/getEventConnection.d.ts +1 -1
- package/cloudwatch/getEventConnection.js +1 -1
- package/docdb/cluster.d.ts +12 -0
- package/docdb/cluster.js +2 -0
- package/docdb/cluster.js.map +1 -1
- package/docdb/globalCluster.d.ts +218 -0
- package/docdb/globalCluster.js +169 -0
- package/docdb/globalCluster.js.map +1 -0
- package/docdb/index.d.ts +1 -0
- package/docdb/index.js +5 -0
- package/docdb/index.js.map +1 -1
- package/ebs/encryptionByDefault.d.ts +8 -0
- package/ebs/encryptionByDefault.js +8 -0
- package/ebs/encryptionByDefault.js.map +1 -1
- package/ec2/getKeyPair.d.ts +93 -0
- package/ec2/getKeyPair.js +51 -0
- package/ec2/getKeyPair.js.map +1 -0
- package/ec2/index.d.ts +1 -0
- package/ec2/index.js +1 -0
- package/ec2/index.js.map +1 -1
- package/ec2/keyPair.d.ts +1 -1
- package/ec2/securityGroupRule.d.ts +1 -1
- package/ec2/securityGroupRule.js +1 -1
- package/eks/nodeGroup.d.ts +3 -3
- package/emr/cluster.d.ts +2 -2
- package/emr/cluster.js +2 -2
- package/lambda/function.d.ts +3 -3
- package/lambda/function.js +3 -3
- package/lambda/permission.d.ts +4 -4
- package/lambda/permission.js +1 -1
- package/mq/broker.d.ts +1 -3
- package/mq/broker.js +0 -5
- package/mq/broker.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/rds/cluster.d.ts +6 -6
- package/s3/bucketIntelligentTieringConfiguration.d.ts +154 -0
- package/s3/bucketIntelligentTieringConfiguration.js +122 -0
- package/s3/bucketIntelligentTieringConfiguration.js.map +1 -0
- package/s3/index.d.ts +1 -0
- package/s3/index.js +5 -0
- package/s3/index.js.map +1 -1
- package/sns/smsPreferences.d.ts +1 -1
- package/types/input.d.ts +278 -153
- package/types/output.d.ts +116 -1
package/types/output.d.ts
CHANGED
|
@@ -5025,7 +5025,7 @@ export declare namespace batch {
|
|
|
5025
5025
|
*/
|
|
5026
5026
|
allocationStrategy?: string;
|
|
5027
5027
|
/**
|
|
5028
|
-
* Integer of
|
|
5028
|
+
* Integer of maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20% (`20`), then the Spot price must be below 20% of the current On-Demand price for that EC2 instance. If you leave this field empty, the default value is 100% of the On-Demand price. This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.
|
|
5029
5029
|
*/
|
|
5030
5030
|
bidPercentage?: number;
|
|
5031
5031
|
/**
|
|
@@ -6185,6 +6185,76 @@ export declare namespace cloudfront {
|
|
|
6185
6185
|
minimumProtocolVersion?: string;
|
|
6186
6186
|
sslSupportMethod?: string;
|
|
6187
6187
|
}
|
|
6188
|
+
interface FieldLevelEncryptionConfigContentTypeProfileConfig {
|
|
6189
|
+
/**
|
|
6190
|
+
* Object that contains an attribute `items` that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile.
|
|
6191
|
+
*/
|
|
6192
|
+
contentTypeProfiles: outputs.cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfiles;
|
|
6193
|
+
/**
|
|
6194
|
+
* specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
|
|
6195
|
+
*/
|
|
6196
|
+
forwardWhenContentTypeIsUnknown: boolean;
|
|
6197
|
+
}
|
|
6198
|
+
interface FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfiles {
|
|
6199
|
+
items: outputs.cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItem[];
|
|
6200
|
+
}
|
|
6201
|
+
interface FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItem {
|
|
6202
|
+
/**
|
|
6203
|
+
* he content type for a field-level encryption content type-profile mapping. Valid value is `application/x-www-form-urlencoded`.
|
|
6204
|
+
*/
|
|
6205
|
+
contentType: string;
|
|
6206
|
+
/**
|
|
6207
|
+
* The format for a field-level encryption content type-profile mapping. Valid value is `URLEncoded`.
|
|
6208
|
+
*/
|
|
6209
|
+
format: string;
|
|
6210
|
+
/**
|
|
6211
|
+
* ID of profile to use for field-level encryption query argument-profile mapping
|
|
6212
|
+
*/
|
|
6213
|
+
profileId?: string;
|
|
6214
|
+
}
|
|
6215
|
+
interface FieldLevelEncryptionConfigQueryArgProfileConfig {
|
|
6216
|
+
/**
|
|
6217
|
+
* Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
|
|
6218
|
+
*/
|
|
6219
|
+
forwardWhenQueryArgProfileIsUnknown: boolean;
|
|
6220
|
+
/**
|
|
6221
|
+
* Object that contains an attribute `items` that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
|
|
6222
|
+
*/
|
|
6223
|
+
queryArgProfiles?: outputs.cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfiles;
|
|
6224
|
+
}
|
|
6225
|
+
interface FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfiles {
|
|
6226
|
+
items?: outputs.cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItem[];
|
|
6227
|
+
}
|
|
6228
|
+
interface FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItem {
|
|
6229
|
+
/**
|
|
6230
|
+
* ID of profile to use for field-level encryption query argument-profile mapping
|
|
6231
|
+
*/
|
|
6232
|
+
profileId: string;
|
|
6233
|
+
/**
|
|
6234
|
+
* Query argument for field-level encryption query argument-profile mapping.
|
|
6235
|
+
*/
|
|
6236
|
+
queryArg: string;
|
|
6237
|
+
}
|
|
6238
|
+
interface FieldLevelEncryptionProfileEncryptionEntities {
|
|
6239
|
+
items?: outputs.cloudfront.FieldLevelEncryptionProfileEncryptionEntitiesItem[];
|
|
6240
|
+
}
|
|
6241
|
+
interface FieldLevelEncryptionProfileEncryptionEntitiesItem {
|
|
6242
|
+
/**
|
|
6243
|
+
* Object that contains an attribute `items` that contains the list of field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
|
|
6244
|
+
*/
|
|
6245
|
+
fieldPatterns: outputs.cloudfront.FieldLevelEncryptionProfileEncryptionEntitiesItemFieldPatterns;
|
|
6246
|
+
/**
|
|
6247
|
+
* The provider associated with the public key being used for encryption.
|
|
6248
|
+
*/
|
|
6249
|
+
providerId: string;
|
|
6250
|
+
/**
|
|
6251
|
+
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
|
|
6252
|
+
*/
|
|
6253
|
+
publicKeyId: string;
|
|
6254
|
+
}
|
|
6255
|
+
interface FieldLevelEncryptionProfileEncryptionEntitiesItemFieldPatterns {
|
|
6256
|
+
items?: string[];
|
|
6257
|
+
}
|
|
6188
6258
|
interface GetCachePolicyParametersInCacheKeyAndForwardedToOrigin {
|
|
6189
6259
|
/**
|
|
6190
6260
|
* Object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and automatically included in requests that CloudFront sends to the origin. See Cookies Config for more information.
|
|
@@ -8494,6 +8564,7 @@ export declare namespace config {
|
|
|
8494
8564
|
acm?: string;
|
|
8495
8565
|
acmpca?: string;
|
|
8496
8566
|
alexaforbusiness?: string;
|
|
8567
|
+
amp?: string;
|
|
8497
8568
|
amplify?: string;
|
|
8498
8569
|
amplifybackend?: string;
|
|
8499
8570
|
apigateway?: string;
|
|
@@ -8595,6 +8666,8 @@ export declare namespace config {
|
|
|
8595
8666
|
emr?: string;
|
|
8596
8667
|
emrcontainers?: string;
|
|
8597
8668
|
es?: string;
|
|
8669
|
+
eventbridge?: string;
|
|
8670
|
+
events?: string;
|
|
8598
8671
|
finspace?: string;
|
|
8599
8672
|
finspacedata?: string;
|
|
8600
8673
|
firehose?: string;
|
|
@@ -9284,6 +9357,16 @@ export declare namespace docdb {
|
|
|
9284
9357
|
*/
|
|
9285
9358
|
value: string;
|
|
9286
9359
|
}
|
|
9360
|
+
interface GlobalClusterGlobalClusterMember {
|
|
9361
|
+
/**
|
|
9362
|
+
* Amazon Resource Name (ARN) of member DB Cluster.
|
|
9363
|
+
*/
|
|
9364
|
+
dbClusterArn: string;
|
|
9365
|
+
/**
|
|
9366
|
+
* Whether the member is the primary DB Cluster.
|
|
9367
|
+
*/
|
|
9368
|
+
isWriter: boolean;
|
|
9369
|
+
}
|
|
9287
9370
|
}
|
|
9288
9371
|
export declare namespace dynamodb {
|
|
9289
9372
|
interface GetTableAttribute {
|
|
@@ -10265,6 +10348,16 @@ export declare namespace ec2 {
|
|
|
10265
10348
|
*/
|
|
10266
10349
|
values: string[];
|
|
10267
10350
|
}
|
|
10351
|
+
interface GetKeyPairFilter {
|
|
10352
|
+
/**
|
|
10353
|
+
* The name of the filter field. Valid values can be found in the [EC2 DescribeKeyPairs API Reference](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeKeyPairs.html).
|
|
10354
|
+
*/
|
|
10355
|
+
name: string;
|
|
10356
|
+
/**
|
|
10357
|
+
* Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
|
|
10358
|
+
*/
|
|
10359
|
+
values: string[];
|
|
10360
|
+
}
|
|
10268
10361
|
interface GetLaunchConfigurationEbsBlockDevice {
|
|
10269
10362
|
/**
|
|
10270
10363
|
* Whether the EBS Volume will be deleted on instance termination.
|
|
@@ -23340,6 +23433,28 @@ export declare namespace s3 {
|
|
|
23340
23433
|
*/
|
|
23341
23434
|
uri?: string;
|
|
23342
23435
|
}
|
|
23436
|
+
interface BucketIntelligentTieringConfigurationFilter {
|
|
23437
|
+
/**
|
|
23438
|
+
* An object key name prefix that identifies the subset of objects to which the configuration applies.
|
|
23439
|
+
*/
|
|
23440
|
+
prefix?: string;
|
|
23441
|
+
/**
|
|
23442
|
+
* All of these tags must exist in the object's tag set in order for the configuration to apply.
|
|
23443
|
+
*/
|
|
23444
|
+
tags?: {
|
|
23445
|
+
[key: string]: string;
|
|
23446
|
+
};
|
|
23447
|
+
}
|
|
23448
|
+
interface BucketIntelligentTieringConfigurationTiering {
|
|
23449
|
+
/**
|
|
23450
|
+
* S3 Intelligent-Tiering access tier. Valid values: `ARCHIVE_CONFIGURATION`, `DEEP_ARCHIVE_CONFIGURATION`.
|
|
23451
|
+
*/
|
|
23452
|
+
accessTier: string;
|
|
23453
|
+
/**
|
|
23454
|
+
* The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier.
|
|
23455
|
+
*/
|
|
23456
|
+
days: number;
|
|
23457
|
+
}
|
|
23343
23458
|
interface BucketLifecycleRule {
|
|
23344
23459
|
/**
|
|
23345
23460
|
* Specifies the number of days after initiating a multipart upload when the multipart upload must be completed.
|