@pulumi/aws 7.22.0 → 7.23.0-alpha.1773307372

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.
Files changed (39) hide show
  1. package/bedrock/agentcoreAgentRuntime.d.ts +4 -0
  2. package/bedrock/agentcoreAgentRuntime.js +4 -0
  3. package/bedrock/agentcoreAgentRuntime.js.map +1 -1
  4. package/cloudwatch/logResourcePolicy.d.ts +39 -7
  5. package/cloudwatch/logResourcePolicy.js +12 -5
  6. package/cloudwatch/logResourcePolicy.js.map +1 -1
  7. package/costexplorer/anomalyMonitor.d.ts +3 -3
  8. package/costexplorer/costAllocationTag.d.ts +18 -0
  9. package/costexplorer/costAllocationTag.js +18 -0
  10. package/costexplorer/costAllocationTag.js.map +1 -1
  11. package/ec2/vpcEndpoint.d.ts +3 -3
  12. package/glue/catalogTable.d.ts +79 -5
  13. package/glue/catalogTable.js +66 -2
  14. package/glue/catalogTable.js.map +1 -1
  15. package/guardduty/ipset.d.ts +8 -0
  16. package/guardduty/ipset.js +2 -0
  17. package/guardduty/ipset.js.map +1 -1
  18. package/guardduty/publishingDestination.d.ts +52 -6
  19. package/guardduty/publishingDestination.js +8 -0
  20. package/guardduty/publishingDestination.js.map +1 -1
  21. package/guardduty/threatIntelSet.d.ts +8 -0
  22. package/guardduty/threatIntelSet.js +2 -0
  23. package/guardduty/threatIntelSet.js.map +1 -1
  24. package/iam/getOutboundWebIdentityFederation.d.ts +40 -0
  25. package/iam/getOutboundWebIdentityFederation.js +42 -0
  26. package/iam/getOutboundWebIdentityFederation.js.map +1 -0
  27. package/iam/index.d.ts +3 -0
  28. package/iam/index.js +5 -2
  29. package/iam/index.js.map +1 -1
  30. package/lightsail/staticIpAttachment.d.ts +2 -2
  31. package/lightsail/staticIpAttachment.js +2 -2
  32. package/observabilityadmin/centralizationRuleForOrganization.d.ts +4 -1
  33. package/observabilityadmin/centralizationRuleForOrganization.js +4 -1
  34. package/observabilityadmin/centralizationRuleForOrganization.js.map +1 -1
  35. package/package.json +2 -2
  36. package/types/input.d.ts +192 -0
  37. package/types/input.js.map +1 -1
  38. package/types/output.d.ts +192 -0
  39. package/types/output.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -13649,6 +13649,10 @@ export declare namespace bedrock {
13649
13649
  * Set of allowed client IDs for JWT token validation.
13650
13650
  */
13651
13651
  allowedClients?: pulumi.Input<pulumi.Input<string>[]>;
13652
+ /**
13653
+ * Set of scopes that are allowed to access the token.
13654
+ */
13655
+ allowedScopes?: pulumi.Input<pulumi.Input<string>[]>;
13652
13656
  /**
13653
13657
  * URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with `.well-known/openid-configuration`.
13654
13658
  */
@@ -13831,6 +13835,7 @@ export declare namespace bedrock {
13831
13835
  * Set of allowed client IDs for JWT token validation.
13832
13836
  */
13833
13837
  allowedClients?: pulumi.Input<pulumi.Input<string>[]>;
13838
+ allowedScopes: pulumi.Input<pulumi.Input<string>[]>;
13834
13839
  /**
13835
13840
  * URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with `.well-known/openid-configuration`.
13836
13841
  */
@@ -39801,6 +39806,10 @@ export declare namespace glue {
39801
39806
  icebergInput: pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInput>;
39802
39807
  }
39803
39808
  interface CatalogTableOpenTableFormatInputIcebergInput {
39809
+ /**
39810
+ * Configuration parameters, including table properties and metadata specifications. See `icebergTableInput` below.
39811
+ */
39812
+ icebergTableInput?: pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInput>;
39804
39813
  /**
39805
39814
  * A required metadata operation. Can only be set to CREATE.
39806
39815
  */
@@ -39810,6 +39819,119 @@ export declare namespace glue {
39810
39819
  */
39811
39820
  version?: pulumi.Input<string>;
39812
39821
  }
39822
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInput {
39823
+ /**
39824
+ * The S3 location where the Iceberg table data will be stored. Maximum length of 2056 characters.
39825
+ */
39826
+ location: pulumi.Input<string>;
39827
+ /**
39828
+ * The partitioning specification that defines how the Iceberg table data will be organized and partitioned for optimal query performance. See `partitionSpec` below.
39829
+ */
39830
+ partitionSpec?: pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpec>;
39831
+ /**
39832
+ * Key-value pairs of additional table properties and configuration settings for the Iceberg table.
39833
+ */
39834
+ properties?: pulumi.Input<{
39835
+ [key: string]: pulumi.Input<string>;
39836
+ }>;
39837
+ /**
39838
+ * The schema definition that specifies the structure, field types, and metadata for the Iceberg table. See `schema` below.
39839
+ */
39840
+ schema: pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchema>;
39841
+ /**
39842
+ * The sort order specification that defines how data should be ordered within each partition to optimize query performance. See `sortOrder` below.
39843
+ */
39844
+ sortOrder?: pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrder>;
39845
+ }
39846
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpec {
39847
+ /**
39848
+ * The list of partition fields that define how the table data should be partitioned. See `fields` below.
39849
+ */
39850
+ fields: pulumi.Input<pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpecField>[]>;
39851
+ /**
39852
+ * The unique identifier for this partition specification within the Iceberg table's metadata history.
39853
+ */
39854
+ specId?: pulumi.Input<number>;
39855
+ }
39856
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpecField {
39857
+ /**
39858
+ * The unique identifier assigned to this partition field within the Iceberg table's partition specification.
39859
+ */
39860
+ fieldId?: pulumi.Input<number>;
39861
+ /**
39862
+ * Name of the table. For Hive compatibility, this must be entirely lowercase.
39863
+ */
39864
+ name: pulumi.Input<string>;
39865
+ sourceId: pulumi.Input<number>;
39866
+ transform: pulumi.Input<string>;
39867
+ }
39868
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchema {
39869
+ /**
39870
+ * The list of field definitions that make up the table schema. See `fields` below.
39871
+ */
39872
+ fields: pulumi.Input<pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchemaField>[]>;
39873
+ /**
39874
+ * The list of field identifiers that uniquely identify records in the table, used for row-level operations and deduplication.
39875
+ */
39876
+ identifierFieldIds?: pulumi.Input<pulumi.Input<number>[]>;
39877
+ /**
39878
+ * The unique identifier for this schema version within the Iceberg table's schema evolution history.
39879
+ */
39880
+ schemaId?: pulumi.Input<number>;
39881
+ /**
39882
+ * The data type definition for this field as a JSON string, specifying the structure and format of the data it contains. Examples: `"long"`, `"string"`, `"timestamp"`, `"decimal(10,2)"`.
39883
+ */
39884
+ type?: pulumi.Input<string>;
39885
+ }
39886
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchemaField {
39887
+ /**
39888
+ * Optional documentation or description text that provides additional context about the purpose and usage of this field. Length between 0 and 255 characters.
39889
+ */
39890
+ doc?: pulumi.Input<string>;
39891
+ /**
39892
+ * Catalog ID, Database name and of the name table.
39893
+ */
39894
+ id: pulumi.Input<number>;
39895
+ /**
39896
+ * Default value as JSON used to populate the field's value for all records that were written before the field was added to the schema.
39897
+ */
39898
+ initialDefault?: pulumi.Input<string>;
39899
+ /**
39900
+ * Name of the table. For Hive compatibility, this must be entirely lowercase.
39901
+ */
39902
+ name: pulumi.Input<string>;
39903
+ /**
39904
+ * Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.
39905
+ */
39906
+ required: pulumi.Input<boolean>;
39907
+ type: pulumi.Input<string>;
39908
+ /**
39909
+ * Default value as JSON used to populate the field's value for any records written after the field was added to the schema, if the writer does not supply the field's value.
39910
+ */
39911
+ writeDefault?: pulumi.Input<string>;
39912
+ }
39913
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrder {
39914
+ /**
39915
+ * The list of fields and their sort directions that define the ordering criteria for the Iceberg table data. See `fields` below.
39916
+ */
39917
+ fields: pulumi.Input<pulumi.Input<inputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrderField>[]>;
39918
+ /**
39919
+ * The unique identifier for this sort order specification within the Iceberg table's metadata.
39920
+ */
39921
+ orderId: pulumi.Input<number>;
39922
+ }
39923
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrderField {
39924
+ /**
39925
+ * The sort direction for this field. Valid values: `asc`, `desc`.
39926
+ */
39927
+ direction: pulumi.Input<string>;
39928
+ /**
39929
+ * The ordering behavior for null values in this field. Valid values: `nulls-first`, `nulls-last`.
39930
+ */
39931
+ nullOrder: pulumi.Input<string>;
39932
+ sourceId: pulumi.Input<number>;
39933
+ transform: pulumi.Input<string>;
39934
+ }
39813
39935
  interface CatalogTableOptimizerConfiguration {
39814
39936
  /**
39815
39937
  * Indicates whether the table optimizer is enabled.
@@ -40071,6 +40193,66 @@ export declare namespace glue {
40071
40193
  */
40072
40194
  region?: pulumi.Input<string>;
40073
40195
  }
40196
+ interface CatalogTableViewDefinition {
40197
+ /**
40198
+ * The definer of a view in SQL.
40199
+ */
40200
+ definer?: pulumi.Input<string>;
40201
+ /**
40202
+ * You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
40203
+ */
40204
+ isProtected?: pulumi.Input<boolean>;
40205
+ /**
40206
+ * Type of the materialized view's last refresh. Valid values: `Full`, `Incremental`.
40207
+ */
40208
+ lastRefreshType?: pulumi.Input<string>;
40209
+ /**
40210
+ * Auto refresh interval in seconds for the materialized view.
40211
+ */
40212
+ refreshSeconds?: pulumi.Input<number>;
40213
+ /**
40214
+ * A list of structures that contains the dialect of the view, and the query that defines the view. See `representations` below.
40215
+ */
40216
+ representations?: pulumi.Input<pulumi.Input<inputs.glue.CatalogTableViewDefinitionRepresentation>[]>;
40217
+ /**
40218
+ * List of the Apache Iceberg table versions referenced by the materialized view.
40219
+ */
40220
+ subObjectVersionIds?: pulumi.Input<pulumi.Input<number>[]>;
40221
+ /**
40222
+ * A list of base table ARNs that make up the view.
40223
+ */
40224
+ subObjects?: pulumi.Input<pulumi.Input<string>[]>;
40225
+ /**
40226
+ * ID value that identifies this view's version. For materialized views, the version ID is the Apache Iceberg table's snapshot ID.
40227
+ */
40228
+ viewVersionId?: pulumi.Input<number>;
40229
+ /**
40230
+ * Version ID of the Apache Iceberg table.
40231
+ */
40232
+ viewVersionToken?: pulumi.Input<string>;
40233
+ }
40234
+ interface CatalogTableViewDefinitionRepresentation {
40235
+ /**
40236
+ * A parameter that specifies the engine type of a specific representation. Valid values are `REDSHIFT`, `ATHENA`, and `SPARK`.
40237
+ */
40238
+ dialect?: pulumi.Input<string>;
40239
+ /**
40240
+ * A parameter that specifies the version of the engine of a specific representation.
40241
+ */
40242
+ dialectVersion?: pulumi.Input<string>;
40243
+ /**
40244
+ * The name of the connection to be used to validate the specific representation of the view.
40245
+ */
40246
+ validationConnection?: pulumi.Input<string>;
40247
+ /**
40248
+ * A string that represents the SQL query that describes the view with expanded resource ARNs.
40249
+ */
40250
+ viewExpandedText?: pulumi.Input<string>;
40251
+ /**
40252
+ * A string that represents the original SQL query that describes the view.
40253
+ */
40254
+ viewOriginalText?: pulumi.Input<string>;
40255
+ }
40074
40256
  interface ClassifierCsvClassifier {
40075
40257
  /**
40076
40258
  * Enables the processing of files that contain only one column.
@@ -68363,6 +68545,10 @@ export declare namespace observabilityadmin {
68363
68545
  * Configuration block for backup settings. See `backupConfiguration` below.
68364
68546
  */
68365
68547
  backupConfiguration?: pulumi.Input<inputs.observabilityadmin.CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationBackupConfiguration>;
68548
+ /**
68549
+ * Configuration block for a naming pattern for destination log groups created during centralization. See `logGroupNameConfiguration` below.
68550
+ */
68551
+ logGroupNameConfiguration?: pulumi.Input<inputs.observabilityadmin.CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationLogGroupNameConfiguration>;
68366
68552
  /**
68367
68553
  * Configuration block for logs encryption settings. See `logsEncryptionConfiguration` below.
68368
68554
  */
@@ -68378,6 +68564,12 @@ export declare namespace observabilityadmin {
68378
68564
  */
68379
68565
  region?: pulumi.Input<string>;
68380
68566
  }
68567
+ interface CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationLogGroupNameConfiguration {
68568
+ /**
68569
+ * Pattern used for generating destination log group names during centralization. The pattern can contain static text and dynamic variables that are replaced with source attributes. For supported dynamic variables, see the [AWS documentation](https://docs.aws.amazon.com/cloudwatch/latest/observabilityadmin/API_LogGroupNameConfiguration.html). Note that `$` used in dynamic variables must be escaped as `$$` in Terraform configuration.
68570
+ */
68571
+ logGroupNamePattern: pulumi.Input<string>;
68572
+ }
68381
68573
  interface CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationLogsEncryptionConfiguration {
68382
68574
  /**
68383
68575
  * Strategy for resolving encryption conflicts. Valid values: `ALLOW`, `SKIP`.
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAio3EjF,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;QAC/E,OAAO;YACH,GAAG,GAAG;YACN,WAAW,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,WAAW;SAChD,CAAC;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAy03EjF,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;QAC/E,OAAO;YACH,GAAG,GAAG;YACN,WAAW,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,WAAW;SAChD,CAAC;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
package/types/output.d.ts CHANGED
@@ -14756,6 +14756,10 @@ export declare namespace bedrock {
14756
14756
  * Set of allowed client IDs for JWT token validation.
14757
14757
  */
14758
14758
  allowedClients?: string[];
14759
+ /**
14760
+ * Set of scopes that are allowed to access the token.
14761
+ */
14762
+ allowedScopes?: string[];
14759
14763
  /**
14760
14764
  * URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with `.well-known/openid-configuration`.
14761
14765
  */
@@ -14938,6 +14942,7 @@ export declare namespace bedrock {
14938
14942
  * Set of allowed client IDs for JWT token validation.
14939
14943
  */
14940
14944
  allowedClients?: string[];
14945
+ allowedScopes: string[];
14941
14946
  /**
14942
14947
  * URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with `.well-known/openid-configuration`.
14943
14948
  */
@@ -46707,6 +46712,10 @@ export declare namespace glue {
46707
46712
  icebergInput: outputs.glue.CatalogTableOpenTableFormatInputIcebergInput;
46708
46713
  }
46709
46714
  interface CatalogTableOpenTableFormatInputIcebergInput {
46715
+ /**
46716
+ * Configuration parameters, including table properties and metadata specifications. See `icebergTableInput` below.
46717
+ */
46718
+ icebergTableInput?: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInput;
46710
46719
  /**
46711
46720
  * A required metadata operation. Can only be set to CREATE.
46712
46721
  */
@@ -46716,6 +46725,119 @@ export declare namespace glue {
46716
46725
  */
46717
46726
  version?: string;
46718
46727
  }
46728
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInput {
46729
+ /**
46730
+ * The S3 location where the Iceberg table data will be stored. Maximum length of 2056 characters.
46731
+ */
46732
+ location: string;
46733
+ /**
46734
+ * The partitioning specification that defines how the Iceberg table data will be organized and partitioned for optimal query performance. See `partitionSpec` below.
46735
+ */
46736
+ partitionSpec?: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpec;
46737
+ /**
46738
+ * Key-value pairs of additional table properties and configuration settings for the Iceberg table.
46739
+ */
46740
+ properties?: {
46741
+ [key: string]: string;
46742
+ };
46743
+ /**
46744
+ * The schema definition that specifies the structure, field types, and metadata for the Iceberg table. See `schema` below.
46745
+ */
46746
+ schema: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchema;
46747
+ /**
46748
+ * The sort order specification that defines how data should be ordered within each partition to optimize query performance. See `sortOrder` below.
46749
+ */
46750
+ sortOrder?: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrder;
46751
+ }
46752
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpec {
46753
+ /**
46754
+ * The list of partition fields that define how the table data should be partitioned. See `fields` below.
46755
+ */
46756
+ fields: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpecField[];
46757
+ /**
46758
+ * The unique identifier for this partition specification within the Iceberg table's metadata history.
46759
+ */
46760
+ specId?: number;
46761
+ }
46762
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputPartitionSpecField {
46763
+ /**
46764
+ * The unique identifier assigned to this partition field within the Iceberg table's partition specification.
46765
+ */
46766
+ fieldId?: number;
46767
+ /**
46768
+ * Name of the table. For Hive compatibility, this must be entirely lowercase.
46769
+ */
46770
+ name: string;
46771
+ sourceId: number;
46772
+ transform: string;
46773
+ }
46774
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchema {
46775
+ /**
46776
+ * The list of field definitions that make up the table schema. See `fields` below.
46777
+ */
46778
+ fields: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchemaField[];
46779
+ /**
46780
+ * The list of field identifiers that uniquely identify records in the table, used for row-level operations and deduplication.
46781
+ */
46782
+ identifierFieldIds?: number[];
46783
+ /**
46784
+ * The unique identifier for this schema version within the Iceberg table's schema evolution history.
46785
+ */
46786
+ schemaId?: number;
46787
+ /**
46788
+ * The data type definition for this field as a JSON string, specifying the structure and format of the data it contains. Examples: `"long"`, `"string"`, `"timestamp"`, `"decimal(10,2)"`.
46789
+ */
46790
+ type?: string;
46791
+ }
46792
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSchemaField {
46793
+ /**
46794
+ * Optional documentation or description text that provides additional context about the purpose and usage of this field. Length between 0 and 255 characters.
46795
+ */
46796
+ doc?: string;
46797
+ /**
46798
+ * Catalog ID, Database name and of the name table.
46799
+ */
46800
+ id: number;
46801
+ /**
46802
+ * Default value as JSON used to populate the field's value for all records that were written before the field was added to the schema.
46803
+ */
46804
+ initialDefault?: string;
46805
+ /**
46806
+ * Name of the table. For Hive compatibility, this must be entirely lowercase.
46807
+ */
46808
+ name: string;
46809
+ /**
46810
+ * Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.
46811
+ */
46812
+ required: boolean;
46813
+ type: string;
46814
+ /**
46815
+ * Default value as JSON used to populate the field's value for any records written after the field was added to the schema, if the writer does not supply the field's value.
46816
+ */
46817
+ writeDefault?: string;
46818
+ }
46819
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrder {
46820
+ /**
46821
+ * The list of fields and their sort directions that define the ordering criteria for the Iceberg table data. See `fields` below.
46822
+ */
46823
+ fields: outputs.glue.CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrderField[];
46824
+ /**
46825
+ * The unique identifier for this sort order specification within the Iceberg table's metadata.
46826
+ */
46827
+ orderId: number;
46828
+ }
46829
+ interface CatalogTableOpenTableFormatInputIcebergInputIcebergTableInputSortOrderField {
46830
+ /**
46831
+ * The sort direction for this field. Valid values: `asc`, `desc`.
46832
+ */
46833
+ direction: string;
46834
+ /**
46835
+ * The ordering behavior for null values in this field. Valid values: `nulls-first`, `nulls-last`.
46836
+ */
46837
+ nullOrder: string;
46838
+ sourceId: number;
46839
+ transform: string;
46840
+ }
46719
46841
  interface CatalogTableOptimizerConfiguration {
46720
46842
  /**
46721
46843
  * Indicates whether the table optimizer is enabled.
@@ -46977,6 +47099,66 @@ export declare namespace glue {
46977
47099
  */
46978
47100
  region?: string;
46979
47101
  }
47102
+ interface CatalogTableViewDefinition {
47103
+ /**
47104
+ * The definer of a view in SQL.
47105
+ */
47106
+ definer: string;
47107
+ /**
47108
+ * You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
47109
+ */
47110
+ isProtected: boolean;
47111
+ /**
47112
+ * Type of the materialized view's last refresh. Valid values: `Full`, `Incremental`.
47113
+ */
47114
+ lastRefreshType?: string;
47115
+ /**
47116
+ * Auto refresh interval in seconds for the materialized view.
47117
+ */
47118
+ refreshSeconds?: number;
47119
+ /**
47120
+ * A list of structures that contains the dialect of the view, and the query that defines the view. See `representations` below.
47121
+ */
47122
+ representations?: outputs.glue.CatalogTableViewDefinitionRepresentation[];
47123
+ /**
47124
+ * List of the Apache Iceberg table versions referenced by the materialized view.
47125
+ */
47126
+ subObjectVersionIds?: number[];
47127
+ /**
47128
+ * A list of base table ARNs that make up the view.
47129
+ */
47130
+ subObjects?: string[];
47131
+ /**
47132
+ * ID value that identifies this view's version. For materialized views, the version ID is the Apache Iceberg table's snapshot ID.
47133
+ */
47134
+ viewVersionId?: number;
47135
+ /**
47136
+ * Version ID of the Apache Iceberg table.
47137
+ */
47138
+ viewVersionToken?: string;
47139
+ }
47140
+ interface CatalogTableViewDefinitionRepresentation {
47141
+ /**
47142
+ * A parameter that specifies the engine type of a specific representation. Valid values are `REDSHIFT`, `ATHENA`, and `SPARK`.
47143
+ */
47144
+ dialect?: string;
47145
+ /**
47146
+ * A parameter that specifies the version of the engine of a specific representation.
47147
+ */
47148
+ dialectVersion?: string;
47149
+ /**
47150
+ * The name of the connection to be used to validate the specific representation of the view.
47151
+ */
47152
+ validationConnection?: string;
47153
+ /**
47154
+ * A string that represents the SQL query that describes the view with expanded resource ARNs.
47155
+ */
47156
+ viewExpandedText?: string;
47157
+ /**
47158
+ * A string that represents the original SQL query that describes the view.
47159
+ */
47160
+ viewOriginalText?: string;
47161
+ }
46980
47162
  interface ClassifierCsvClassifier {
46981
47163
  /**
46982
47164
  * Enables the processing of files that contain only one column.
@@ -76494,6 +76676,10 @@ export declare namespace observabilityadmin {
76494
76676
  * Configuration block for backup settings. See `backupConfiguration` below.
76495
76677
  */
76496
76678
  backupConfiguration?: outputs.observabilityadmin.CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationBackupConfiguration;
76679
+ /**
76680
+ * Configuration block for a naming pattern for destination log groups created during centralization. See `logGroupNameConfiguration` below.
76681
+ */
76682
+ logGroupNameConfiguration?: outputs.observabilityadmin.CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationLogGroupNameConfiguration;
76497
76683
  /**
76498
76684
  * Configuration block for logs encryption settings. See `logsEncryptionConfiguration` below.
76499
76685
  */
@@ -76509,6 +76695,12 @@ export declare namespace observabilityadmin {
76509
76695
  */
76510
76696
  region?: string;
76511
76697
  }
76698
+ interface CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationLogGroupNameConfiguration {
76699
+ /**
76700
+ * Pattern used for generating destination log group names during centralization. The pattern can contain static text and dynamic variables that are replaced with source attributes. For supported dynamic variables, see the [AWS documentation](https://docs.aws.amazon.com/cloudwatch/latest/observabilityadmin/API_LogGroupNameConfiguration.html). Note that `$` used in dynamic variables must be escaped as `$$` in Terraform configuration.
76701
+ */
76702
+ logGroupNamePattern: string;
76703
+ }
76512
76704
  interface CentralizationRuleForOrganizationRuleDestinationDestinationLogsConfigurationLogsEncryptionConfiguration {
76513
76705
  /**
76514
76706
  * Strategy for resolving encryption conflicts. Valid values: `ALLOW`, `SKIP`.
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA40rFjF,IAAiB,GAAG,CAudnB;AAvdD,WAAiB,GAAG;IAuYhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;QAC/E,OAAO;YACH,GAAG,GAAG;YACN,WAAW,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,WAAW;SAChD,CAAC;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwEL,CAAC,EAvdgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAudnB"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAohsFjF,IAAiB,GAAG,CAudnB;AAvdD,WAAiB,GAAG;IAuYhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;QAC/E,OAAO;YACH,GAAG,GAAG;YACN,WAAW,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,WAAW;SAChD,CAAC;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwEL,CAAC,EAvdgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAudnB"}