iam-floyd 0.802.0 → 0.804.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,6 +30,19 @@ export declare class S3 extends PolicyStatement {
30
30
  * https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html
31
31
  */
32
32
  toAbortMultipartUpload(): this;
33
+ /**
34
+ * Grants permission to configure server access logs delivery to CloudWatch
35
+ *
36
+ * Access Level: Read
37
+ *
38
+ * Possible conditions:
39
+ * - .ifResourceArnBeingAuthorized()
40
+ * - .ifDeliverySourceArn()
41
+ * - .ifLogType()
42
+ *
43
+ * https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html
44
+ */
45
+ toAllowVendedLogDeliveryForResource(): this;
33
46
  /**
34
47
  * Grants permission to associate Access Grants identity center
35
48
  *
@@ -4191,6 +4204,18 @@ export declare class S3 extends PolicyStatement {
4191
4204
  * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
4192
4205
  */
4193
4206
  ifDelimiter(value: string | string[], operator?: Operator | string): this;
4207
+ /**
4208
+ * Filters access by specific delivery source Amazon Resource Name (ARN)
4209
+ *
4210
+ * https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html
4211
+ *
4212
+ * Applies to actions:
4213
+ * - .toAllowVendedLogDeliveryForResource()
4214
+ *
4215
+ * @param value The value(s) to check
4216
+ * @param operator Works with [arn operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_ARN). **Default:** `ArnLike`
4217
+ */
4218
+ ifDeliverySourceArn(value: string | string[], operator?: Operator | string): this;
4194
4219
  /**
4195
4220
  * Filters access by a specific replication destination region for targeted buckets of the AWS FIS action aws:s3:bucket-pause-replication
4196
4221
  *
@@ -4252,6 +4277,18 @@ export declare class S3 extends PolicyStatement {
4252
4277
  * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
4253
4278
  */
4254
4279
  ifLocationconstraint(value: string | string[], operator?: Operator | string): this;
4280
+ /**
4281
+ * Filters access by specific log type, currently supports S3_SERVER_ACCESS_LOGS
4282
+ *
4283
+ * https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html
4284
+ *
4285
+ * Applies to actions:
4286
+ * - .toAllowVendedLogDeliveryForResource()
4287
+ *
4288
+ * @param value The value(s) to check
4289
+ * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
4290
+ */
4291
+ ifLogType(value: string | string[], operator?: Operator | string): this;
4255
4292
  /**
4256
4293
  * Filters access by maximum number of keys returned in a ListBucket request
4257
4294
  *
@@ -4330,6 +4367,18 @@ export declare class S3 extends PolicyStatement {
4330
4367
  * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
4331
4368
  */
4332
4369
  ifPrefix(value: string | string[], operator?: Operator | string): this;
4370
+ /**
4371
+ * Filters access by source bucket Amazon Resource Name (ARN)
4372
+ *
4373
+ * https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html
4374
+ *
4375
+ * Applies to actions:
4376
+ * - .toAllowVendedLogDeliveryForResource()
4377
+ *
4378
+ * @param value The value(s) to check
4379
+ * @param operator Works with [arn operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_ARN). **Default:** `ArnLike`
4380
+ */
4381
+ ifResourceArnBeingAuthorized(value: string | string[], operator?: Operator | string): this;
4333
4382
  /**
4334
4383
  * Filters access by the age in milliseconds of the request signature
4335
4384
  *