@pulumi/aws-native 1.27.0-alpha.1744032579 → 1.27.0-alpha.1744114661

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/input.d.ts CHANGED
@@ -4824,6 +4824,27 @@ export declare namespace applicationsignals {
4824
4824
  */
4825
4825
  startTime: pulumi.Input<number>;
4826
4826
  }
4827
+ /**
4828
+ * Configuration for identifying a dependency and its operation
4829
+ */
4830
+ interface ServiceLevelObjectiveDependencyConfigArgs {
4831
+ /**
4832
+ * This is a string-to-string map. It can include the following fields.
4833
+ *
4834
+ * - `Type` designates the type of object this is.
4835
+ * - `ResourceType` specifies the type of the resource. This field is used only when the value of the `Type` field is `Resource` or `AWS::Resource` .
4836
+ * - `Name` specifies the name of the object. This is used only if the value of the `Type` field is `Service` , `RemoteService` , or `AWS::Service` .
4837
+ * - `Identifier` identifies the resource objects of this resource. This is used only if the value of the `Type` field is `Resource` or `AWS::Resource` .
4838
+ * - `Environment` specifies the location where this object is hosted, or what it belongs to.
4839
+ */
4840
+ dependencyKeyAttributes: pulumi.Input<{
4841
+ [key: string]: pulumi.Input<string>;
4842
+ }>;
4843
+ /**
4844
+ * When the SLO monitors a specific operation of the dependency, this field specifies the name of that operation in the dependency.
4845
+ */
4846
+ dependencyOperationName: pulumi.Input<string>;
4847
+ }
4827
4848
  /**
4828
4849
  * A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric. For example, many Amazon EC2 metrics publish `InstanceId` as a dimension name, and the actual instance ID as the value for that dimension. You can assign up to 30 dimensions to a metric.
4829
4850
  */
@@ -4990,6 +5011,7 @@ export declare namespace applicationsignals {
4990
5011
  * This structure contains the information about the metric that is used for a request-based SLO.
4991
5012
  */
4992
5013
  interface ServiceLevelObjectiveRequestBasedSliMetricArgs {
5014
+ dependencyConfig?: pulumi.Input<inputs.applicationsignals.ServiceLevelObjectiveDependencyConfigArgs>;
4993
5015
  /**
4994
5016
  * This is a string-to-string map that contains information about the type of object that this SLO is related to. It can include the following fields.
4995
5017
  *
@@ -5054,6 +5076,7 @@ export declare namespace applicationsignals {
5054
5076
  * A structure that contains information about the metric that the SLO monitors.
5055
5077
  */
5056
5078
  interface ServiceLevelObjectiveSliMetricArgs {
5079
+ dependencyConfig?: pulumi.Input<inputs.applicationsignals.ServiceLevelObjectiveDependencyConfigArgs>;
5057
5080
  /**
5058
5081
  * If this SLO is related to a metric collected by Application Signals, you must use this field to specify which service the SLO metric is related to. To do so, you must specify at least the `Type` , `Name` , and `Environment` attributes.
5059
5082
  *
@@ -11503,6 +11526,41 @@ export declare namespace bedrock {
11503
11526
  */
11504
11527
  textField: pulumi.Input<string>;
11505
11528
  }
11529
+ /**
11530
+ * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
11531
+ */
11532
+ interface KnowledgeBaseOpenSearchManagedClusterConfigurationArgs {
11533
+ /**
11534
+ * The Amazon Resource Name (ARN) of the OpenSearch domain.
11535
+ */
11536
+ domainArn: pulumi.Input<string>;
11537
+ /**
11538
+ * The endpoint URL the OpenSearch domain.
11539
+ */
11540
+ domainEndpoint: pulumi.Input<string>;
11541
+ fieldMapping: pulumi.Input<inputs.bedrock.KnowledgeBaseOpenSearchManagedClusterFieldMappingArgs>;
11542
+ /**
11543
+ * The name of the vector store.
11544
+ */
11545
+ vectorIndexName: pulumi.Input<string>;
11546
+ }
11547
+ /**
11548
+ * A mapping of Bedrock Knowledge Base fields to OpenSearch Managed Cluster field names
11549
+ */
11550
+ interface KnowledgeBaseOpenSearchManagedClusterFieldMappingArgs {
11551
+ /**
11552
+ * The name of the field in which Amazon Bedrock stores metadata about the vector store.
11553
+ */
11554
+ metadataField: pulumi.Input<string>;
11555
+ /**
11556
+ * The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.
11557
+ */
11558
+ textField: pulumi.Input<string>;
11559
+ /**
11560
+ * The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
11561
+ */
11562
+ vectorField: pulumi.Input<string>;
11563
+ }
11506
11564
  /**
11507
11565
  * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
11508
11566
  */
@@ -11804,6 +11862,7 @@ export declare namespace bedrock {
11804
11862
  * Contains details about the Neptune Analytics configuration of the knowledge base in Amazon Neptune. For more information, see [Create a vector index in Amazon Neptune Analytics.](https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html) .
11805
11863
  */
11806
11864
  neptuneAnalyticsConfiguration?: pulumi.Input<inputs.bedrock.KnowledgeBaseNeptuneAnalyticsConfigurationArgs>;
11865
+ opensearchManagedClusterConfiguration?: pulumi.Input<inputs.bedrock.KnowledgeBaseOpenSearchManagedClusterConfigurationArgs>;
11807
11866
  /**
11808
11867
  * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
11809
11868
  */
@@ -21542,6 +21601,8 @@ export declare namespace dms {
21542
21601
  }
21543
21602
  export declare namespace docdbelastic {
21544
21603
  }
21604
+ export declare namespace dsql {
21605
+ }
21545
21606
  export declare namespace dynamodb {
21546
21607
  interface GlobalTableAttributeDefinitionArgs {
21547
21608
  /**
@@ -61469,6 +61530,7 @@ export declare namespace quicksight {
61469
61530
  * The field options to be configured to a table.
61470
61531
  */
61471
61532
  selectedFieldOptions?: pulumi.Input<pulumi.Input<inputs.quicksight.AnalysisTableFieldOptionArgs>[]>;
61533
+ transposedTableOptions?: pulumi.Input<pulumi.Input<inputs.quicksight.AnalysisTransposedTableOptionArgs>[]>;
61472
61534
  }
61473
61535
  interface AnalysisTableFieldUrlConfigurationArgs {
61474
61536
  /**
@@ -62002,6 +62064,14 @@ export declare namespace quicksight {
62002
62064
  */
62003
62065
  totalsVisibility?: pulumi.Input<enums.quicksight.AnalysisVisibility>;
62004
62066
  }
62067
+ interface AnalysisTransposedTableOptionArgs {
62068
+ columnIndex?: pulumi.Input<number>;
62069
+ columnType: pulumi.Input<enums.quicksight.AnalysisTransposedColumnType>;
62070
+ /**
62071
+ * String based length that is composed of value and unit in px
62072
+ */
62073
+ columnWidth?: pulumi.Input<string>;
62074
+ }
62005
62075
  interface AnalysisTreeMapAggregatedFieldWellsArgs {
62006
62076
  /**
62007
62077
  * The color field well of a tree map. Values are grouped by aggregations based on group by fields.
@@ -70334,6 +70404,7 @@ export declare namespace quicksight {
70334
70404
  * The field options to be configured to a table.
70335
70405
  */
70336
70406
  selectedFieldOptions?: pulumi.Input<pulumi.Input<inputs.quicksight.DashboardTableFieldOptionArgs>[]>;
70407
+ transposedTableOptions?: pulumi.Input<pulumi.Input<inputs.quicksight.DashboardTransposedTableOptionArgs>[]>;
70337
70408
  }
70338
70409
  interface DashboardTableFieldUrlConfigurationArgs {
70339
70410
  /**
@@ -70867,6 +70938,14 @@ export declare namespace quicksight {
70867
70938
  */
70868
70939
  totalsVisibility?: pulumi.Input<enums.quicksight.DashboardVisibility>;
70869
70940
  }
70941
+ interface DashboardTransposedTableOptionArgs {
70942
+ columnIndex?: pulumi.Input<number>;
70943
+ columnType: pulumi.Input<enums.quicksight.DashboardTransposedColumnType>;
70944
+ /**
70945
+ * String based length that is composed of value and unit in px
70946
+ */
70947
+ columnWidth?: pulumi.Input<string>;
70948
+ }
70870
70949
  interface DashboardTreeMapAggregatedFieldWellsArgs {
70871
70950
  /**
70872
70951
  * The color field well of a tree map. Values are grouped by aggregations based on group by fields.
@@ -80114,6 +80193,7 @@ export declare namespace quicksight {
80114
80193
  * The field options to be configured to a table.
80115
80194
  */
80116
80195
  selectedFieldOptions?: pulumi.Input<pulumi.Input<inputs.quicksight.TemplateTableFieldOptionArgs>[]>;
80196
+ transposedTableOptions?: pulumi.Input<pulumi.Input<inputs.quicksight.TemplateTransposedTableOptionArgs>[]>;
80117
80197
  }
80118
80198
  interface TemplateTableFieldUrlConfigurationArgs {
80119
80199
  /**
@@ -80647,6 +80727,14 @@ export declare namespace quicksight {
80647
80727
  */
80648
80728
  totalsVisibility?: any;
80649
80729
  }
80730
+ interface TemplateTransposedTableOptionArgs {
80731
+ columnIndex?: pulumi.Input<number>;
80732
+ columnType: pulumi.Input<enums.quicksight.TemplateTransposedColumnType>;
80733
+ /**
80734
+ * String based length that is composed of value and unit in px
80735
+ */
80736
+ columnWidth?: pulumi.Input<string>;
80737
+ }
80650
80738
  interface TemplateTreeMapAggregatedFieldWellsArgs {
80651
80739
  /**
80652
80740
  * The color field well of a tree map. Values are grouped by aggregations based on group by fields.
package/types/output.d.ts CHANGED
@@ -4721,6 +4721,27 @@ export declare namespace applicationsignals {
4721
4721
  */
4722
4722
  startTime: number;
4723
4723
  }
4724
+ /**
4725
+ * Configuration for identifying a dependency and its operation
4726
+ */
4727
+ interface ServiceLevelObjectiveDependencyConfig {
4728
+ /**
4729
+ * This is a string-to-string map. It can include the following fields.
4730
+ *
4731
+ * - `Type` designates the type of object this is.
4732
+ * - `ResourceType` specifies the type of the resource. This field is used only when the value of the `Type` field is `Resource` or `AWS::Resource` .
4733
+ * - `Name` specifies the name of the object. This is used only if the value of the `Type` field is `Service` , `RemoteService` , or `AWS::Service` .
4734
+ * - `Identifier` identifies the resource objects of this resource. This is used only if the value of the `Type` field is `Resource` or `AWS::Resource` .
4735
+ * - `Environment` specifies the location where this object is hosted, or what it belongs to.
4736
+ */
4737
+ dependencyKeyAttributes: {
4738
+ [key: string]: string;
4739
+ };
4740
+ /**
4741
+ * When the SLO monitors a specific operation of the dependency, this field specifies the name of that operation in the dependency.
4742
+ */
4743
+ dependencyOperationName: string;
4744
+ }
4724
4745
  /**
4725
4746
  * A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric. For example, many Amazon EC2 metrics publish `InstanceId` as a dimension name, and the actual instance ID as the value for that dimension. You can assign up to 30 dimensions to a metric.
4726
4747
  */
@@ -4887,6 +4908,7 @@ export declare namespace applicationsignals {
4887
4908
  * This structure contains the information about the metric that is used for a request-based SLO.
4888
4909
  */
4889
4910
  interface ServiceLevelObjectiveRequestBasedSliMetric {
4911
+ dependencyConfig?: outputs.applicationsignals.ServiceLevelObjectiveDependencyConfig;
4890
4912
  /**
4891
4913
  * This is a string-to-string map that contains information about the type of object that this SLO is related to. It can include the following fields.
4892
4914
  *
@@ -4951,6 +4973,7 @@ export declare namespace applicationsignals {
4951
4973
  * A structure that contains information about the metric that the SLO monitors.
4952
4974
  */
4953
4975
  interface ServiceLevelObjectiveSliMetric {
4976
+ dependencyConfig?: outputs.applicationsignals.ServiceLevelObjectiveDependencyConfig;
4954
4977
  /**
4955
4978
  * If this SLO is related to a metric collected by Application Signals, you must use this field to specify which service the SLO metric is related to. To do so, you must specify at least the `Type` , `Name` , and `Environment` attributes.
4956
4979
  *
@@ -11884,6 +11907,41 @@ export declare namespace bedrock {
11884
11907
  */
11885
11908
  textField: string;
11886
11909
  }
11910
+ /**
11911
+ * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
11912
+ */
11913
+ interface KnowledgeBaseOpenSearchManagedClusterConfiguration {
11914
+ /**
11915
+ * The Amazon Resource Name (ARN) of the OpenSearch domain.
11916
+ */
11917
+ domainArn: string;
11918
+ /**
11919
+ * The endpoint URL the OpenSearch domain.
11920
+ */
11921
+ domainEndpoint: string;
11922
+ fieldMapping: outputs.bedrock.KnowledgeBaseOpenSearchManagedClusterFieldMapping;
11923
+ /**
11924
+ * The name of the vector store.
11925
+ */
11926
+ vectorIndexName: string;
11927
+ }
11928
+ /**
11929
+ * A mapping of Bedrock Knowledge Base fields to OpenSearch Managed Cluster field names
11930
+ */
11931
+ interface KnowledgeBaseOpenSearchManagedClusterFieldMapping {
11932
+ /**
11933
+ * The name of the field in which Amazon Bedrock stores metadata about the vector store.
11934
+ */
11935
+ metadataField: string;
11936
+ /**
11937
+ * The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.
11938
+ */
11939
+ textField: string;
11940
+ /**
11941
+ * The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
11942
+ */
11943
+ vectorField: string;
11944
+ }
11887
11945
  /**
11888
11946
  * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
11889
11947
  */
@@ -12185,6 +12243,7 @@ export declare namespace bedrock {
12185
12243
  * Contains details about the Neptune Analytics configuration of the knowledge base in Amazon Neptune. For more information, see [Create a vector index in Amazon Neptune Analytics.](https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html) .
12186
12244
  */
12187
12245
  neptuneAnalyticsConfiguration?: outputs.bedrock.KnowledgeBaseNeptuneAnalyticsConfiguration;
12246
+ opensearchManagedClusterConfiguration?: outputs.bedrock.KnowledgeBaseOpenSearchManagedClusterConfiguration;
12188
12247
  /**
12189
12248
  * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
12190
12249
  */
@@ -22422,6 +22481,8 @@ export declare namespace dms {
22422
22481
  }
22423
22482
  export declare namespace docdbelastic {
22424
22483
  }
22484
+ export declare namespace dsql {
22485
+ }
22425
22486
  export declare namespace dynamodb {
22426
22487
  interface GlobalTableAttributeDefinition {
22427
22488
  /**
@@ -63333,6 +63394,7 @@ export declare namespace quicksight {
63333
63394
  * The field options to be configured to a table.
63334
63395
  */
63335
63396
  selectedFieldOptions?: outputs.quicksight.AnalysisTableFieldOption[];
63397
+ transposedTableOptions?: outputs.quicksight.AnalysisTransposedTableOption[];
63336
63398
  }
63337
63399
  interface AnalysisTableFieldUrlConfiguration {
63338
63400
  /**
@@ -63866,6 +63928,14 @@ export declare namespace quicksight {
63866
63928
  */
63867
63929
  totalsVisibility?: enums.quicksight.AnalysisVisibility;
63868
63930
  }
63931
+ interface AnalysisTransposedTableOption {
63932
+ columnIndex?: number;
63933
+ columnType: enums.quicksight.AnalysisTransposedColumnType;
63934
+ /**
63935
+ * String based length that is composed of value and unit in px
63936
+ */
63937
+ columnWidth?: string;
63938
+ }
63869
63939
  interface AnalysisTreeMapAggregatedFieldWells {
63870
63940
  /**
63871
63941
  * The color field well of a tree map. Values are grouped by aggregations based on group by fields.
@@ -72239,6 +72309,7 @@ export declare namespace quicksight {
72239
72309
  * The field options to be configured to a table.
72240
72310
  */
72241
72311
  selectedFieldOptions?: outputs.quicksight.DashboardTableFieldOption[];
72312
+ transposedTableOptions?: outputs.quicksight.DashboardTransposedTableOption[];
72242
72313
  }
72243
72314
  interface DashboardTableFieldUrlConfiguration {
72244
72315
  /**
@@ -72772,6 +72843,14 @@ export declare namespace quicksight {
72772
72843
  */
72773
72844
  totalsVisibility?: enums.quicksight.DashboardVisibility;
72774
72845
  }
72846
+ interface DashboardTransposedTableOption {
72847
+ columnIndex?: number;
72848
+ columnType: enums.quicksight.DashboardTransposedColumnType;
72849
+ /**
72850
+ * String based length that is composed of value and unit in px
72851
+ */
72852
+ columnWidth?: string;
72853
+ }
72775
72854
  interface DashboardTreeMapAggregatedFieldWells {
72776
72855
  /**
72777
72856
  * The color field well of a tree map. Values are grouped by aggregations based on group by fields.
@@ -82127,6 +82206,7 @@ export declare namespace quicksight {
82127
82206
  * The field options to be configured to a table.
82128
82207
  */
82129
82208
  selectedFieldOptions?: outputs.quicksight.TemplateTableFieldOption[];
82209
+ transposedTableOptions?: outputs.quicksight.TemplateTransposedTableOption[];
82130
82210
  }
82131
82211
  interface TemplateTableFieldUrlConfiguration {
82132
82212
  /**
@@ -82660,6 +82740,14 @@ export declare namespace quicksight {
82660
82740
  */
82661
82741
  totalsVisibility?: any;
82662
82742
  }
82743
+ interface TemplateTransposedTableOption {
82744
+ columnIndex?: number;
82745
+ columnType: enums.quicksight.TemplateTransposedColumnType;
82746
+ /**
82747
+ * String based length that is composed of value and unit in px
82748
+ */
82749
+ columnWidth?: string;
82750
+ }
82663
82751
  interface TemplateTreeMapAggregatedFieldWells {
82664
82752
  /**
82665
82753
  * The color field well of a tree map. Values are grouped by aggregations based on group by fields.
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAiukBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,qBAAqB,EAAE,MAAA,CAAC,GAAG,CAAC,qBAAqB,CAAC,mCAAI,CAAC,IACzD;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA6xkBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,qBAAqB,EAAE,MAAA,CAAC,GAAG,CAAC,qBAAqB,CAAC,mCAAI,CAAC,IACzD;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}