@pulumi/aws 7.6.0-alpha.1755821487 → 7.6.0-alpha.1756160407

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/types/output.d.ts CHANGED
@@ -10991,11 +10991,11 @@ export declare namespace bcmdata {
10991
10991
  }
10992
10992
  interface ExportExportDataQuery {
10993
10993
  /**
10994
- * Query statement.
10994
+ * Query statement. The SQL table name for CUR 2.0 is `COST_AND_USAGE_REPORT`. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html) for a list of available columns.
10995
10995
  */
10996
10996
  queryStatement: string;
10997
10997
  /**
10998
- * Table configuration.
10998
+ * Table configuration. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html#cur2-table-configurations) for the available configurations. In addition to those listed in the documentation, `BILLING_VIEW_ARN` must also be included, as shown in the example above.
10999
10999
  */
11000
11000
  tableConfigurations?: {
11001
11001
  [key: string]: {
@@ -25529,7 +25529,7 @@ export declare namespace dlm {
25529
25529
  */
25530
25530
  schedules?: outputs.dlm.LifecyclePolicyPolicyDetailsSchedule[];
25531
25531
  /**
25532
- * A map of tag keys and their values. Any resources that match the `resourceTypes` and are tagged with _any_ of these tags will be targeted.
25532
+ * A map of tag keys and their values. Any resources that match the `resourceTypes` and are tagged with _any_ of these tags will be targeted. Required when `policyType` is `EBS_SNAPSHOT_MANAGEMENT` or `IMAGE_MANAGEMENT`. Must not be specified when `policyType` is `EVENT_BASED_POLICY`.
25533
25533
  *
25534
25534
  * > Note: You cannot have overlapping lifecycle policies that share the same `targetTags`. Pulumi is unable to detect this at plan time but it will fail during apply.
25535
25535
  */
@@ -29911,6 +29911,16 @@ export declare namespace ec2 {
29911
29911
  */
29912
29912
  networkInterfaceId: string;
29913
29913
  }
29914
+ interface InstancePrimaryNetworkInterface {
29915
+ /**
29916
+ * Whether the network interface will be deleted when the instance terminates.
29917
+ */
29918
+ deleteOnTermination: boolean;
29919
+ /**
29920
+ * ID of the network interface to attach.
29921
+ */
29922
+ networkInterfaceId: string;
29923
+ }
29914
29924
  interface InstancePrivateDnsNameOptions {
29915
29925
  /**
29916
29926
  * Indicates whether to respond to DNS queries for instance hostnames with DNS A records.
@@ -30080,7 +30090,7 @@ export declare namespace ec2 {
30080
30090
  }
30081
30091
  interface LaunchTemplateCapacityReservationSpecification {
30082
30092
  /**
30083
- * Indicates the instance's Capacity Reservation preferences. Can be `open` or `none`. (Default `none`).
30093
+ * Indicates the instance's Capacity Reservation preferences. Can be `capacity-reservations-only`, `open` or `none`. If `capacityReservationId` or `capacityReservationResourceGroupArn` is specified in `capacityReservationTarget` block, either omit `capacityReservationPreference` or set it to `capacity-reservations-only`.
30084
30094
  */
30085
30095
  capacityReservationPreference?: string;
30086
30096
  /**
@@ -32329,6 +32339,16 @@ export declare namespace ec2 {
32329
32339
  */
32330
32340
  networkInterfaceId: string;
32331
32341
  }
32342
+ interface SpotInstanceRequestPrimaryNetworkInterface {
32343
+ /**
32344
+ * Whether the network interface will be deleted when the instance terminates.
32345
+ */
32346
+ deleteOnTermination: boolean;
32347
+ /**
32348
+ * ID of the network interface to attach.
32349
+ */
32350
+ networkInterfaceId: string;
32351
+ }
32332
32352
  interface SpotInstanceRequestPrivateDnsNameOptions {
32333
32353
  /**
32334
32354
  * Indicates whether to respond to DNS queries for instance hostnames with DNS A records.
@@ -32484,6 +32504,9 @@ export declare namespace ec2 {
32484
32504
  * The IPv6 address to assign to the endpoint network interface in the subnet. You must provide an IPv6 address if the VPC endpoint supports IPv6.
32485
32505
  */
32486
32506
  ipv6?: string;
32507
+ /**
32508
+ * The ID of the subnet. Must have a corresponding subnet in the `subnetIds` argument.
32509
+ */
32487
32510
  subnetId?: string;
32488
32511
  }
32489
32512
  interface VpcIpamOperatingRegion {
@@ -33050,6 +33073,16 @@ export declare namespace ecr {
33050
33073
  */
33051
33074
  kmsKey: string;
33052
33075
  }
33076
+ interface GetRepositoryCreationTemplateImageTagMutabilityExclusionFilter {
33077
+ /**
33078
+ * The filter pattern to use for excluding image tags from the mutability setting.
33079
+ */
33080
+ filter: string;
33081
+ /**
33082
+ * The type of filter to use.
33083
+ */
33084
+ filterType: string;
33085
+ }
33053
33086
  interface GetRepositoryEncryptionConfiguration {
33054
33087
  /**
33055
33088
  * Encryption type to use for the repository, either `AES256` or `KMS`.
@@ -33066,6 +33099,16 @@ export declare namespace ecr {
33066
33099
  */
33067
33100
  scanOnPush: boolean;
33068
33101
  }
33102
+ interface GetRepositoryImageTagMutabilityExclusionFilter {
33103
+ /**
33104
+ * The filter pattern to use for excluding image tags from the mutability setting.
33105
+ */
33106
+ filter: string;
33107
+ /**
33108
+ * The type of filter to use.
33109
+ */
33110
+ filterType: string;
33111
+ }
33069
33112
  interface RegistryScanningConfigurationRule {
33070
33113
  /**
33071
33114
  * One or more repository filter blocks, containing a `filter` (required string filtering repositories, see pattern regex [here](https://docs.aws.amazon.com/AmazonECR/latest/APIReference/API_ScanningRepositoryFilter.html)) and a `filterType` (required string, currently only `WILDCARD` is supported).
@@ -33126,6 +33169,16 @@ export declare namespace ecr {
33126
33169
  */
33127
33170
  kmsKey: string;
33128
33171
  }
33172
+ interface RepositoryCreationTemplateImageTagMutabilityExclusionFilter {
33173
+ /**
33174
+ * The filter pattern to use for excluding image tags from the mutability setting. Must contain only letters, numbers, and special characters (._*-). Each filter can be up to 128 characters long and can contain a maximum of 2 wildcards (*).
33175
+ */
33176
+ filter: string;
33177
+ /**
33178
+ * The type of filter to use. Must be `WILDCARD`.
33179
+ */
33180
+ filterType: string;
33181
+ }
33129
33182
  interface RepositoryEncryptionConfiguration {
33130
33183
  /**
33131
33184
  * The encryption type to use for the repository. Valid values are `AES256` or `KMS`. Defaults to `AES256`.
@@ -42443,7 +42496,7 @@ export declare namespace imagebuilder {
42443
42496
  /**
42444
42497
  * Configures whether public AMIs are excluded from the lifecycle action.
42445
42498
  */
42446
- isPublic?: boolean;
42499
+ isPublic: boolean;
42447
42500
  /**
42448
42501
  * Specifies configuration details for Image Builder to exclude the most recent resources from lifecycle actions. Detailed below.
42449
42502
  */
@@ -75280,11 +75333,11 @@ export declare namespace s3 {
75280
75333
  }
75281
75334
  interface BucketLoggingTargetObjectKeyFormat {
75282
75335
  /**
75283
- * Partitioned S3 key for log objects. See below.
75336
+ * Partitioned S3 key for log objects, in the form `[targetPrefix][SourceAccountId]/[SourceRegion]/[SourceBucket]/[YYYY]/[MM]/[DD]/[YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]`. Conflicts with `simplePrefix`. See below.
75284
75337
  */
75285
75338
  partitionedPrefix?: outputs.s3.BucketLoggingTargetObjectKeyFormatPartitionedPrefix;
75286
75339
  /**
75287
- * Use the simple format for S3 keys for log objects. To use, set `simplePrefix {}`.
75340
+ * Use the simple format for S3 keys for log objects, in the form `[targetPrefix][YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]`. To use, set `simplePrefix {}`. Conflicts with `partitionedPrefix`.
75288
75341
  */
75289
75342
  simplePrefix?: outputs.s3.BucketLoggingTargetObjectKeyFormatSimplePrefix;
75290
75343
  }
@@ -75327,11 +75380,11 @@ export declare namespace s3 {
75327
75380
  }
75328
75381
  interface BucketLoggingV2TargetObjectKeyFormat {
75329
75382
  /**
75330
- * Partitioned S3 key for log objects. See below.
75383
+ * Partitioned S3 key for log objects, in the form `[targetPrefix][SourceAccountId]/[SourceRegion]/[SourceBucket]/[YYYY]/[MM]/[DD]/[YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]`. Conflicts with `simplePrefix`. See below.
75331
75384
  */
75332
75385
  partitionedPrefix?: outputs.s3.BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix;
75333
75386
  /**
75334
- * Use the simple format for S3 keys for log objects. To use, set `simplePrefix {}`.
75387
+ * Use the simple format for S3 keys for log objects, in the form `[targetPrefix][YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]`. To use, set `simplePrefix {}`. Conflicts with `partitionedPrefix`.
75335
75388
  */
75336
75389
  simplePrefix?: outputs.s3.BucketLoggingV2TargetObjectKeyFormatSimplePrefix;
75337
75390
  }
@@ -83300,6 +83353,9 @@ export declare namespace sesv2 {
83300
83353
  * When the event destination is enabled, the specified event types are sent to the destinations. Default: `false`.
83301
83354
  */
83302
83355
  enabled?: boolean;
83356
+ /**
83357
+ * An object that defines an Amazon EventBridge destination for email events. You can use Amazon EventBridge to send notifications when certain email events occur. See `eventBridgeDestination` Block for details.
83358
+ */
83303
83359
  eventBridgeDestination?: outputs.sesv2.ConfigurationSetEventDestinationEventDestinationEventBridgeDestination;
83304
83360
  /**
83305
83361
  * An object that defines an Amazon Kinesis Data Firehose destination for email events. See `kinesisFirehoseDestination` Block for details.
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAyq3EjF,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"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAmu3EjF,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"}