@pulumi/aws 7.14.0 → 7.15.0-alpha.1766069560
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/bedrock/agentKnowledgeBase.d.ts +131 -8
- package/bedrock/agentKnowledgeBase.js +125 -2
- package/bedrock/agentKnowledgeBase.js.map +1 -1
- package/cloudfront/index.d.ts +3 -0
- package/cloudfront/index.js +6 -1
- package/cloudfront/index.js.map +1 -1
- package/cloudfront/trustStore.d.ts +175 -0
- package/cloudfront/trustStore.js +113 -0
- package/cloudfront/trustStore.js.map +1 -0
- package/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/datazone/domain.d.ts +8 -0
- package/datazone/domain.js +2 -0
- package/datazone/domain.js.map +1 -1
- package/datazone/getDomain.d.ts +4 -0
- package/datazone/getDomain.js.map +1 -1
- package/ecs/cluster.d.ts +1 -1
- package/ecs/cluster.js +1 -1
- package/elasticache/serverlessCache.d.ts +3 -3
- package/lambda/function.d.ts +9 -5
- package/lambda/function.js +1 -1
- package/lambda/function.js.map +1 -1
- package/networkmanager/connectAttachment.d.ts +12 -0
- package/networkmanager/connectAttachment.js +2 -0
- package/networkmanager/connectAttachment.js.map +1 -1
- package/networkmanager/connectPeer.d.ts +4 -4
- package/networkmanager/connectPeer.js +3 -3
- package/networkmanager/dxGatewayAttachment.d.ts +12 -0
- package/networkmanager/dxGatewayAttachment.js +2 -0
- package/networkmanager/dxGatewayAttachment.js.map +1 -1
- package/networkmanager/getCoreNetworkPolicyDocument.d.ts +24 -0
- package/networkmanager/getCoreNetworkPolicyDocument.js +4 -0
- package/networkmanager/getCoreNetworkPolicyDocument.js.map +1 -1
- package/networkmanager/siteToSiteVpnAttachment.d.ts +12 -0
- package/networkmanager/siteToSiteVpnAttachment.js +2 -0
- package/networkmanager/siteToSiteVpnAttachment.js.map +1 -1
- package/networkmanager/transitGatewayRouteTableAttachment.d.ts +12 -0
- package/networkmanager/transitGatewayRouteTableAttachment.js +2 -0
- package/networkmanager/transitGatewayRouteTableAttachment.js.map +1 -1
- package/networkmanager/vpcAttachment.d.ts +12 -0
- package/networkmanager/vpcAttachment.js +2 -0
- package/networkmanager/vpcAttachment.js.map +1 -1
- package/odb/getCloudVmCluster.d.ts +2 -0
- package/odb/getCloudVmCluster.js.map +1 -1
- package/organizations/getAccount.d.ts +109 -0
- package/organizations/getAccount.js +56 -0
- package/organizations/getAccount.js.map +1 -0
- package/organizations/index.d.ts +3 -0
- package/organizations/index.js +4 -1
- package/organizations/index.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +4 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/route53/getResolverEndpoint.d.ts +8 -0
- package/route53/getResolverEndpoint.js.map +1 -1
- package/route53/resolverEndpoint.d.ts +24 -0
- package/route53/resolverEndpoint.js +4 -0
- package/route53/resolverEndpoint.js.map +1 -1
- package/types/input.d.ts +634 -21
- package/types/input.js.map +1 -1
- package/types/output.d.ts +509 -18
- package/types/output.js.map +1 -1
- package/vpclattice/serviceNetworkVpcAssociation.d.ts +26 -0
- package/vpclattice/serviceNetworkVpcAssociation.js +4 -0
- package/vpclattice/serviceNetworkVpcAssociation.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -11693,14 +11693,198 @@ export declare namespace bedrock {
|
|
|
11693
11693
|
}
|
|
11694
11694
|
interface AgentKnowledgeBaseKnowledgeBaseConfiguration {
|
|
11695
11695
|
/**
|
|
11696
|
-
*
|
|
11696
|
+
* Settings for an Amazon Kendra knowledge base. See `kendraKnowledgeBaseConfiguration` block for details.
|
|
11697
|
+
*/
|
|
11698
|
+
kendraKnowledgeBaseConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationKendraKnowledgeBaseConfiguration>;
|
|
11699
|
+
/**
|
|
11700
|
+
* Configurations for a knowledge base connected to an SQL database. See `sqlKnowledgeBaseConfiguration` block for details.
|
|
11701
|
+
*/
|
|
11702
|
+
sqlKnowledgeBaseConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfiguration>;
|
|
11703
|
+
/**
|
|
11704
|
+
* Type of data that the data source is converted into for the knowledge base. Valid Values: `VECTOR`, `KENDRA`, `SQL`.
|
|
11697
11705
|
*/
|
|
11698
11706
|
type: pulumi.Input<string>;
|
|
11699
11707
|
/**
|
|
11700
|
-
* Details about the
|
|
11708
|
+
* Details about the model that's used to convert the data source into vector embeddings. See `vectorKnowledgeBaseConfiguration` block for details.
|
|
11701
11709
|
*/
|
|
11702
11710
|
vectorKnowledgeBaseConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationVectorKnowledgeBaseConfiguration>;
|
|
11703
11711
|
}
|
|
11712
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationKendraKnowledgeBaseConfiguration {
|
|
11713
|
+
/**
|
|
11714
|
+
* ARN of the Amazon Kendra index.
|
|
11715
|
+
*/
|
|
11716
|
+
kendraIndexArn: pulumi.Input<string>;
|
|
11717
|
+
}
|
|
11718
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfiguration {
|
|
11719
|
+
/**
|
|
11720
|
+
* Configurations for a knowledge base connected to an Amazon Redshift database. See `redshiftConfiguration` block for details.
|
|
11721
|
+
*/
|
|
11722
|
+
redshiftConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfiguration>;
|
|
11723
|
+
/**
|
|
11724
|
+
* Type of SQL database to connect to the knowledge base. Valid values: `REDSHIFT`.
|
|
11725
|
+
*/
|
|
11726
|
+
type: pulumi.Input<string>;
|
|
11727
|
+
}
|
|
11728
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfiguration {
|
|
11729
|
+
/**
|
|
11730
|
+
* Configurations for an Amazon Redshift query engine. See `queryEngineConfiguration` block for details.
|
|
11731
|
+
*/
|
|
11732
|
+
queryEngineConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfiguration>;
|
|
11733
|
+
/**
|
|
11734
|
+
* Configurations for generating queries. See `queryGenerationConfiguration` block for details.
|
|
11735
|
+
*/
|
|
11736
|
+
queryGenerationConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfiguration>;
|
|
11737
|
+
/**
|
|
11738
|
+
* Configurations for Amazon Redshift database storage. See `storageConfiguration` block for details.
|
|
11739
|
+
*/
|
|
11740
|
+
storageConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfiguration>;
|
|
11741
|
+
}
|
|
11742
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfiguration {
|
|
11743
|
+
/**
|
|
11744
|
+
* Configurations for a provisioned Amazon Redshift query engine. See `provisionedConfiguration` block for details.
|
|
11745
|
+
*/
|
|
11746
|
+
provisionedConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfiguration>;
|
|
11747
|
+
/**
|
|
11748
|
+
* Configurations for a serverless Amazon Redshift query engine. See `serverlessConfiguration` block for details.
|
|
11749
|
+
*/
|
|
11750
|
+
serverlessConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfiguration>;
|
|
11751
|
+
/**
|
|
11752
|
+
* Type of query engine. Valid values: `SERVERLESS`, `PROVISIONED`.
|
|
11753
|
+
*/
|
|
11754
|
+
type: pulumi.Input<string>;
|
|
11755
|
+
}
|
|
11756
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfiguration {
|
|
11757
|
+
/**
|
|
11758
|
+
* Configurations for authentication to Amazon Redshift. See `authConfiguration` block for details.
|
|
11759
|
+
*/
|
|
11760
|
+
authConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfigurationAuthConfiguration>;
|
|
11761
|
+
/**
|
|
11762
|
+
* ID of the Amazon Redshift cluster.
|
|
11763
|
+
*/
|
|
11764
|
+
clusterIdentifier: pulumi.Input<string>;
|
|
11765
|
+
}
|
|
11766
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfigurationAuthConfiguration {
|
|
11767
|
+
/**
|
|
11768
|
+
* Database username for authentication to an Amazon Redshift provisioned data warehouse.
|
|
11769
|
+
*/
|
|
11770
|
+
databaseUser?: pulumi.Input<string>;
|
|
11771
|
+
/**
|
|
11772
|
+
* Type of authentication to use. Valid values: `IAM`, `USERNAME_PASSWORD`.
|
|
11773
|
+
*/
|
|
11774
|
+
type: pulumi.Input<string>;
|
|
11775
|
+
/**
|
|
11776
|
+
* ARN of a Secrets Manager secret for authentication.
|
|
11777
|
+
*/
|
|
11778
|
+
usernamePasswordSecretArn?: pulumi.Input<string>;
|
|
11779
|
+
}
|
|
11780
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfiguration {
|
|
11781
|
+
/**
|
|
11782
|
+
* Configurations for authentication to a Redshift Serverless. See `authConfiguration` block for details.
|
|
11783
|
+
*/
|
|
11784
|
+
authConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfigurationAuthConfiguration>;
|
|
11785
|
+
/**
|
|
11786
|
+
* ARN of the Amazon Redshift workgroup.
|
|
11787
|
+
*/
|
|
11788
|
+
workgroupArn: pulumi.Input<string>;
|
|
11789
|
+
}
|
|
11790
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfigurationAuthConfiguration {
|
|
11791
|
+
/**
|
|
11792
|
+
* Type of authentication to use. Valid values: `IAM`, `USERNAME_PASSWORD`.
|
|
11793
|
+
*/
|
|
11794
|
+
type: pulumi.Input<string>;
|
|
11795
|
+
/**
|
|
11796
|
+
* ARN of a Secrets Manager secret for authentication.
|
|
11797
|
+
*/
|
|
11798
|
+
usernamePasswordSecretArn?: pulumi.Input<string>;
|
|
11799
|
+
}
|
|
11800
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfiguration {
|
|
11801
|
+
/**
|
|
11802
|
+
* Time after which query generation will time out.
|
|
11803
|
+
*/
|
|
11804
|
+
executionTimeoutSeconds?: pulumi.Input<number>;
|
|
11805
|
+
/**
|
|
11806
|
+
* Configurations for context to use during query generation. See `generationContext` block for details.
|
|
11807
|
+
*/
|
|
11808
|
+
generationContext?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContext>;
|
|
11809
|
+
}
|
|
11810
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContext {
|
|
11811
|
+
/**
|
|
11812
|
+
* Information about example queries to help the query engine generate appropriate SQL queries. See `curatedQuery` block for details.
|
|
11813
|
+
*/
|
|
11814
|
+
curatedQueries?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextCuratedQuery>[]>;
|
|
11815
|
+
/**
|
|
11816
|
+
* Information about a table in the database. See `table` block for details.
|
|
11817
|
+
*/
|
|
11818
|
+
tables?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTable>[]>;
|
|
11819
|
+
}
|
|
11820
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextCuratedQuery {
|
|
11821
|
+
/**
|
|
11822
|
+
* Example natural language query.
|
|
11823
|
+
*/
|
|
11824
|
+
naturalLanguage: pulumi.Input<string>;
|
|
11825
|
+
/**
|
|
11826
|
+
* SQL equivalent of `naturalLanguage`.
|
|
11827
|
+
*/
|
|
11828
|
+
sql: pulumi.Input<string>;
|
|
11829
|
+
}
|
|
11830
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTable {
|
|
11831
|
+
/**
|
|
11832
|
+
* Information about a column in the table. See `column` block for details.
|
|
11833
|
+
*/
|
|
11834
|
+
columns?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTableColumn>[]>;
|
|
11835
|
+
/**
|
|
11836
|
+
* Description of the table that helps the query engine understand the contents of the table.
|
|
11837
|
+
*/
|
|
11838
|
+
description?: pulumi.Input<string>;
|
|
11839
|
+
/**
|
|
11840
|
+
* Whether to include or exclude the table during query generation. Valid values `INCLUDE`, `EXCLUDE`.
|
|
11841
|
+
*/
|
|
11842
|
+
inclusion?: pulumi.Input<string>;
|
|
11843
|
+
/**
|
|
11844
|
+
* Name of the table for which the other fields in this object apply.
|
|
11845
|
+
*/
|
|
11846
|
+
name: pulumi.Input<string>;
|
|
11847
|
+
}
|
|
11848
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTableColumn {
|
|
11849
|
+
/**
|
|
11850
|
+
* Description of the column that helps the query engine understand the contents of the column.
|
|
11851
|
+
*/
|
|
11852
|
+
description?: pulumi.Input<string>;
|
|
11853
|
+
/**
|
|
11854
|
+
* Whether to include or exclude the column during query generation. Valid values `INCLUDE`, `EXCLUDE`.
|
|
11855
|
+
*/
|
|
11856
|
+
inclusion?: pulumi.Input<string>;
|
|
11857
|
+
/**
|
|
11858
|
+
* Name of the column for which the other fields in this object apply.
|
|
11859
|
+
*/
|
|
11860
|
+
name?: pulumi.Input<string>;
|
|
11861
|
+
}
|
|
11862
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfiguration {
|
|
11863
|
+
/**
|
|
11864
|
+
* Configurations for storage in AWS Glue Data Catalog. See `awsDataCatalogConfiguration` block for details.
|
|
11865
|
+
*/
|
|
11866
|
+
awsDataCatalogConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationAwsDataCatalogConfiguration>;
|
|
11867
|
+
/**
|
|
11868
|
+
* Configurations for storage in Amazon Redshift. See `redshiftConfiguration` block for details.
|
|
11869
|
+
*/
|
|
11870
|
+
redshiftConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationRedshiftConfiguration>;
|
|
11871
|
+
/**
|
|
11872
|
+
* Vector store service in which the knowledge base is stored. Valid Values: `MONGO_DB_ATLAS`, `OPENSEARCH_SERVERLESS`, `OPENSEARCH_MANAGED_CLUSTER`, `PINECONE`, `REDIS_ENTERPRISE_CLOUD`, `RDS`, `S3_VECTORS`, `NEPTUNE_ANALYTICS`.
|
|
11873
|
+
*/
|
|
11874
|
+
type: pulumi.Input<string>;
|
|
11875
|
+
}
|
|
11876
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationAwsDataCatalogConfiguration {
|
|
11877
|
+
/**
|
|
11878
|
+
* List of names of the tables to use.
|
|
11879
|
+
*/
|
|
11880
|
+
tableNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
11881
|
+
}
|
|
11882
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationRedshiftConfiguration {
|
|
11883
|
+
/**
|
|
11884
|
+
* Name of the Amazon Redshift database.
|
|
11885
|
+
*/
|
|
11886
|
+
databaseName: pulumi.Input<string>;
|
|
11887
|
+
}
|
|
11704
11888
|
interface AgentKnowledgeBaseKnowledgeBaseConfigurationVectorKnowledgeBaseConfiguration {
|
|
11705
11889
|
/**
|
|
11706
11890
|
* ARN of the model used to create vector embeddings for the knowledge base.
|
|
@@ -11755,7 +11939,19 @@ export declare namespace bedrock {
|
|
|
11755
11939
|
}
|
|
11756
11940
|
interface AgentKnowledgeBaseStorageConfiguration {
|
|
11757
11941
|
/**
|
|
11758
|
-
* The storage configuration of the knowledge base in
|
|
11942
|
+
* The storage configuration of the knowledge base in MongoDB Atlas. See `mongoDbAtlasConfiguration` block for details.
|
|
11943
|
+
*/
|
|
11944
|
+
mongoDbAtlasConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfiguration>;
|
|
11945
|
+
/**
|
|
11946
|
+
* The storage configuration of the knowledge base in Amazon Neptune Analytics. See `neptuneAnalyticsConfiguration` block for details.
|
|
11947
|
+
*/
|
|
11948
|
+
neptuneAnalyticsConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfiguration>;
|
|
11949
|
+
/**
|
|
11950
|
+
* The storage configuration of the knowledge base in Amazon OpenSearch Service Managed Cluster. See `opensearchManagedClusterConfiguration` block for details.
|
|
11951
|
+
*/
|
|
11952
|
+
opensearchManagedClusterConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfiguration>;
|
|
11953
|
+
/**
|
|
11954
|
+
* The storage configuration of the knowledge base in Amazon OpenSearch Service Serverless. See `opensearchServerlessConfiguration` block for details.
|
|
11759
11955
|
*/
|
|
11760
11956
|
opensearchServerlessConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationOpensearchServerlessConfiguration>;
|
|
11761
11957
|
/**
|
|
@@ -11771,10 +11967,114 @@ export declare namespace bedrock {
|
|
|
11771
11967
|
*/
|
|
11772
11968
|
redisEnterpriseCloudConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationRedisEnterpriseCloudConfiguration>;
|
|
11773
11969
|
/**
|
|
11774
|
-
*
|
|
11970
|
+
* The storage configuration of the knowledge base in Amazon S3 Vectors. See `s3VectorsConfiguration` block for details.
|
|
11971
|
+
*/
|
|
11972
|
+
s3VectorsConfiguration?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationS3VectorsConfiguration>;
|
|
11973
|
+
/**
|
|
11974
|
+
* Vector store service in which the knowledge base is stored. Valid Values: `MONGO_DB_ATLAS`, `OPENSEARCH_SERVERLESS`, `OPENSEARCH_MANAGED_CLUSTER`, `PINECONE`, `REDIS_ENTERPRISE_CLOUD`, `RDS`, `S3_VECTORS`, `NEPTUNE_ANALYTICS`.
|
|
11775
11975
|
*/
|
|
11776
11976
|
type: pulumi.Input<string>;
|
|
11777
11977
|
}
|
|
11978
|
+
interface AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfiguration {
|
|
11979
|
+
/**
|
|
11980
|
+
* The name of the collection in the MongoDB Atlas database.
|
|
11981
|
+
*/
|
|
11982
|
+
collectionName: pulumi.Input<string>;
|
|
11983
|
+
/**
|
|
11984
|
+
* The ARN of the secret that you created in AWS Secrets Manager that is linked to your MongoDB Atlas database.
|
|
11985
|
+
*/
|
|
11986
|
+
credentialsSecretArn: pulumi.Input<string>;
|
|
11987
|
+
/**
|
|
11988
|
+
* The name of the database in the MongoDB Atlas database.
|
|
11989
|
+
*/
|
|
11990
|
+
databaseName: pulumi.Input<string>;
|
|
11991
|
+
/**
|
|
11992
|
+
* The endpoint URL of the MongoDB Atlas database.
|
|
11993
|
+
*/
|
|
11994
|
+
endpoint: pulumi.Input<string>;
|
|
11995
|
+
/**
|
|
11996
|
+
* The name of the service that hosts the MongoDB Atlas database.
|
|
11997
|
+
*/
|
|
11998
|
+
endpointServiceName?: pulumi.Input<string>;
|
|
11999
|
+
/**
|
|
12000
|
+
* Contains the names of the fields to which to map information about the vector store.
|
|
12001
|
+
*/
|
|
12002
|
+
fieldMapping?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfigurationFieldMapping>;
|
|
12003
|
+
/**
|
|
12004
|
+
* The name of the vector index.
|
|
12005
|
+
*/
|
|
12006
|
+
textIndexName?: pulumi.Input<string>;
|
|
12007
|
+
/**
|
|
12008
|
+
* The name of the vector index.
|
|
12009
|
+
*/
|
|
12010
|
+
vectorIndexName: pulumi.Input<string>;
|
|
12011
|
+
}
|
|
12012
|
+
interface AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfigurationFieldMapping {
|
|
12013
|
+
/**
|
|
12014
|
+
* The name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
12015
|
+
*/
|
|
12016
|
+
metadataField: pulumi.Input<string>;
|
|
12017
|
+
/**
|
|
12018
|
+
* 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.
|
|
12019
|
+
*/
|
|
12020
|
+
textField: pulumi.Input<string>;
|
|
12021
|
+
/**
|
|
12022
|
+
* The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
|
|
12023
|
+
*/
|
|
12024
|
+
vectorField: pulumi.Input<string>;
|
|
12025
|
+
}
|
|
12026
|
+
interface AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfiguration {
|
|
12027
|
+
/**
|
|
12028
|
+
* The names of the fields to which to map information about the vector store. This block supports the following arguments:
|
|
12029
|
+
*/
|
|
12030
|
+
fieldMapping?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfigurationFieldMapping>;
|
|
12031
|
+
/**
|
|
12032
|
+
* ARN of the Neptune Analytics vector store.
|
|
12033
|
+
*/
|
|
12034
|
+
graphArn: pulumi.Input<string>;
|
|
12035
|
+
}
|
|
12036
|
+
interface AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfigurationFieldMapping {
|
|
12037
|
+
/**
|
|
12038
|
+
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
12039
|
+
*/
|
|
12040
|
+
metadataField: pulumi.Input<string>;
|
|
12041
|
+
/**
|
|
12042
|
+
* 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.
|
|
12043
|
+
*/
|
|
12044
|
+
textField: pulumi.Input<string>;
|
|
12045
|
+
}
|
|
12046
|
+
interface AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfiguration {
|
|
12047
|
+
/**
|
|
12048
|
+
* ARN of the OpenSearch domain.
|
|
12049
|
+
*/
|
|
12050
|
+
domainArn: pulumi.Input<string>;
|
|
12051
|
+
/**
|
|
12052
|
+
* Endpoint URL of the OpenSearch domain.
|
|
12053
|
+
*/
|
|
12054
|
+
domainEndpoint: pulumi.Input<string>;
|
|
12055
|
+
/**
|
|
12056
|
+
* The names of the fields to which to map information about the vector store. This block supports the following arguments:
|
|
12057
|
+
*/
|
|
12058
|
+
fieldMapping?: pulumi.Input<inputs.bedrock.AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfigurationFieldMapping>;
|
|
12059
|
+
/**
|
|
12060
|
+
* Name of the vector store.
|
|
12061
|
+
*/
|
|
12062
|
+
vectorIndexName: pulumi.Input<string>;
|
|
12063
|
+
}
|
|
12064
|
+
interface AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfigurationFieldMapping {
|
|
12065
|
+
/**
|
|
12066
|
+
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
12067
|
+
*/
|
|
12068
|
+
metadataField: pulumi.Input<string>;
|
|
12069
|
+
/**
|
|
12070
|
+
* 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.
|
|
12071
|
+
*/
|
|
12072
|
+
textField: pulumi.Input<string>;
|
|
12073
|
+
/**
|
|
12074
|
+
* Name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
|
|
12075
|
+
*/
|
|
12076
|
+
vectorField: pulumi.Input<string>;
|
|
12077
|
+
}
|
|
11778
12078
|
interface AgentKnowledgeBaseStorageConfigurationOpensearchServerlessConfiguration {
|
|
11779
12079
|
/**
|
|
11780
12080
|
* ARN of the OpenSearch Service vector store.
|
|
@@ -11793,15 +12093,15 @@ export declare namespace bedrock {
|
|
|
11793
12093
|
/**
|
|
11794
12094
|
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
11795
12095
|
*/
|
|
11796
|
-
metadataField
|
|
12096
|
+
metadataField: pulumi.Input<string>;
|
|
11797
12097
|
/**
|
|
11798
12098
|
* 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.
|
|
11799
12099
|
*/
|
|
11800
|
-
textField
|
|
12100
|
+
textField: pulumi.Input<string>;
|
|
11801
12101
|
/**
|
|
11802
12102
|
* Name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
|
|
11803
12103
|
*/
|
|
11804
|
-
vectorField
|
|
12104
|
+
vectorField: pulumi.Input<string>;
|
|
11805
12105
|
}
|
|
11806
12106
|
interface AgentKnowledgeBaseStorageConfigurationPineconeConfiguration {
|
|
11807
12107
|
/**
|
|
@@ -11825,11 +12125,11 @@ export declare namespace bedrock {
|
|
|
11825
12125
|
/**
|
|
11826
12126
|
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
11827
12127
|
*/
|
|
11828
|
-
metadataField
|
|
12128
|
+
metadataField: pulumi.Input<string>;
|
|
11829
12129
|
/**
|
|
11830
12130
|
* 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.
|
|
11831
12131
|
*/
|
|
11832
|
-
textField
|
|
12132
|
+
textField: pulumi.Input<string>;
|
|
11833
12133
|
}
|
|
11834
12134
|
interface AgentKnowledgeBaseStorageConfigurationRdsConfiguration {
|
|
11835
12135
|
/**
|
|
@@ -11907,6 +12207,20 @@ export declare namespace bedrock {
|
|
|
11907
12207
|
*/
|
|
11908
12208
|
vectorField?: pulumi.Input<string>;
|
|
11909
12209
|
}
|
|
12210
|
+
interface AgentKnowledgeBaseStorageConfigurationS3VectorsConfiguration {
|
|
12211
|
+
/**
|
|
12212
|
+
* ARN of the S3 Vectors index. Conflicts with `indexName` and `vectorBucketArn`.
|
|
12213
|
+
*/
|
|
12214
|
+
indexArn?: pulumi.Input<string>;
|
|
12215
|
+
/**
|
|
12216
|
+
* Name of the S3 Vectors index. Must be specified with `vectorBucketArn`. Conflicts with `indexArn`.
|
|
12217
|
+
*/
|
|
12218
|
+
indexName?: pulumi.Input<string>;
|
|
12219
|
+
/**
|
|
12220
|
+
* ARN of the S3 Vectors vector bucket. Must be specified with `indexName`. Conflicts with `indexArn`.
|
|
12221
|
+
*/
|
|
12222
|
+
vectorBucketArn?: pulumi.Input<string>;
|
|
12223
|
+
}
|
|
11910
12224
|
interface AgentKnowledgeBaseTimeouts {
|
|
11911
12225
|
/**
|
|
11912
12226
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -15948,6 +16262,44 @@ export declare namespace cloudfront {
|
|
|
15948
16262
|
*/
|
|
15949
16263
|
samplingRate: pulumi.Input<number>;
|
|
15950
16264
|
}
|
|
16265
|
+
interface TrustStoreCaCertificatesBundleSource {
|
|
16266
|
+
/**
|
|
16267
|
+
* Configuration block for the S3 location of the CA certificates bundle. See `caCertificatesBundleS3Location` below.
|
|
16268
|
+
*/
|
|
16269
|
+
caCertificatesBundleS3Location?: pulumi.Input<inputs.cloudfront.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location>;
|
|
16270
|
+
}
|
|
16271
|
+
interface TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location {
|
|
16272
|
+
/**
|
|
16273
|
+
* S3 bucket name containing the CA certificates bundle.
|
|
16274
|
+
*/
|
|
16275
|
+
bucket: pulumi.Input<string>;
|
|
16276
|
+
/**
|
|
16277
|
+
* S3 object key for the CA certificates bundle.
|
|
16278
|
+
*/
|
|
16279
|
+
key: pulumi.Input<string>;
|
|
16280
|
+
/**
|
|
16281
|
+
* AWS region of the S3 bucket.
|
|
16282
|
+
*/
|
|
16283
|
+
region: pulumi.Input<string>;
|
|
16284
|
+
/**
|
|
16285
|
+
* S3 object version ID for the CA certificates bundle.
|
|
16286
|
+
*/
|
|
16287
|
+
version?: pulumi.Input<string>;
|
|
16288
|
+
}
|
|
16289
|
+
interface TrustStoreTimeouts {
|
|
16290
|
+
/**
|
|
16291
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16292
|
+
*/
|
|
16293
|
+
create?: pulumi.Input<string>;
|
|
16294
|
+
/**
|
|
16295
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
16296
|
+
*/
|
|
16297
|
+
delete?: pulumi.Input<string>;
|
|
16298
|
+
/**
|
|
16299
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16300
|
+
*/
|
|
16301
|
+
update?: pulumi.Input<string>;
|
|
16302
|
+
}
|
|
15951
16303
|
interface VpcOriginTimeouts {
|
|
15952
16304
|
/**
|
|
15953
16305
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -17666,6 +18018,10 @@ export declare namespace codebuild {
|
|
|
17666
18018
|
maximumBuildsAllowed?: pulumi.Input<number>;
|
|
17667
18019
|
}
|
|
17668
18020
|
interface ProjectCache {
|
|
18021
|
+
/**
|
|
18022
|
+
* Namespace that determines the scope in which a cache is shared across multiple projects.
|
|
18023
|
+
*/
|
|
18024
|
+
cacheNamespace?: pulumi.Input<string>;
|
|
17669
18025
|
/**
|
|
17670
18026
|
* Location where the AWS CodeBuild project stores cached resources. For
|
|
17671
18027
|
* type `S3`, the value must be a valid S3 bucket name/prefix.
|
|
@@ -31082,11 +31438,11 @@ export declare namespace ecs {
|
|
|
31082
31438
|
}
|
|
31083
31439
|
interface ClusterConfigurationManagedStorageConfiguration {
|
|
31084
31440
|
/**
|
|
31085
|
-
* AWS Key Management Service key
|
|
31441
|
+
* AWS Key Management Service key ARN for the Fargate ephemeral storage.
|
|
31086
31442
|
*/
|
|
31087
31443
|
fargateEphemeralStorageKmsKeyId?: pulumi.Input<string>;
|
|
31088
31444
|
/**
|
|
31089
|
-
* AWS Key Management Service key
|
|
31445
|
+
* AWS Key Management Service key ARN to encrypt the managed storage.
|
|
31090
31446
|
*/
|
|
31091
31447
|
kmsKeyId?: pulumi.Input<string>;
|
|
31092
31448
|
}
|
|
@@ -63887,9 +64243,9 @@ export declare namespace networkmanager {
|
|
|
63887
64243
|
}
|
|
63888
64244
|
interface ConnectPeerBgpOptions {
|
|
63889
64245
|
/**
|
|
63890
|
-
* Peer ASN.
|
|
64246
|
+
* Peer ASN. Supports 2-byte and 4-byte ASNs (1 to 4294967295).
|
|
63891
64247
|
*/
|
|
63892
|
-
peerAsn?: pulumi.Input<
|
|
64248
|
+
peerAsn?: pulumi.Input<string>;
|
|
63893
64249
|
}
|
|
63894
64250
|
interface ConnectPeerConfiguration {
|
|
63895
64251
|
bgpConfigurations?: pulumi.Input<pulumi.Input<inputs.networkmanager.ConnectPeerConfigurationBgpConfiguration>[]>;
|
|
@@ -63922,9 +64278,9 @@ export declare namespace networkmanager {
|
|
|
63922
64278
|
*/
|
|
63923
64279
|
peerAddress?: pulumi.Input<string>;
|
|
63924
64280
|
/**
|
|
63925
|
-
* Peer ASN.
|
|
64281
|
+
* Peer ASN. Supports 2-byte and 4-byte ASNs (1 to 4294967295).
|
|
63926
64282
|
*/
|
|
63927
|
-
peerAsn?: pulumi.Input<
|
|
64283
|
+
peerAsn?: pulumi.Input<string>;
|
|
63928
64284
|
}
|
|
63929
64285
|
interface CoreNetworkEdge {
|
|
63930
64286
|
/**
|
|
@@ -64090,11 +64446,11 @@ export declare namespace networkmanager {
|
|
|
64090
64446
|
*/
|
|
64091
64447
|
operator?: string;
|
|
64092
64448
|
/**
|
|
64093
|
-
*
|
|
64449
|
+
* Must be `routing-policy-label`.
|
|
64094
64450
|
*/
|
|
64095
64451
|
type: string;
|
|
64096
64452
|
/**
|
|
64097
|
-
*
|
|
64453
|
+
* Routing policy label to match.
|
|
64098
64454
|
*/
|
|
64099
64455
|
value?: string;
|
|
64100
64456
|
}
|
|
@@ -64108,14 +64464,90 @@ export declare namespace networkmanager {
|
|
|
64108
64464
|
*/
|
|
64109
64465
|
operator?: pulumi.Input<string>;
|
|
64110
64466
|
/**
|
|
64111
|
-
*
|
|
64467
|
+
* Must be `routing-policy-label`.
|
|
64112
64468
|
*/
|
|
64113
64469
|
type: pulumi.Input<string>;
|
|
64114
64470
|
/**
|
|
64115
|
-
*
|
|
64471
|
+
* Routing policy label to match.
|
|
64116
64472
|
*/
|
|
64117
64473
|
value?: pulumi.Input<string>;
|
|
64118
64474
|
}
|
|
64475
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRule {
|
|
64476
|
+
/**
|
|
64477
|
+
* Block defining the action to take when conditions match. Detailed below.
|
|
64478
|
+
*/
|
|
64479
|
+
action: inputs.networkmanager.GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleAction;
|
|
64480
|
+
/**
|
|
64481
|
+
* A block argument. Detailed below.
|
|
64482
|
+
*/
|
|
64483
|
+
conditions: inputs.networkmanager.GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleCondition[];
|
|
64484
|
+
/**
|
|
64485
|
+
* A user-defined description that further helps identify the rule.
|
|
64486
|
+
*/
|
|
64487
|
+
description?: string;
|
|
64488
|
+
/**
|
|
64489
|
+
* A set of AWS Region codes where this rule applies.
|
|
64490
|
+
*/
|
|
64491
|
+
edgeLocations?: string[];
|
|
64492
|
+
/**
|
|
64493
|
+
* An integer from `1` to `65535` indicating the rule's order number. Rules are processed in order from the lowest numbered rule to the highest. Rules stop processing when a rule is matched.
|
|
64494
|
+
*/
|
|
64495
|
+
ruleNumber: number;
|
|
64496
|
+
}
|
|
64497
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleArgs {
|
|
64498
|
+
/**
|
|
64499
|
+
* Block defining the action to take when conditions match. Detailed below.
|
|
64500
|
+
*/
|
|
64501
|
+
action: pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleActionArgs>;
|
|
64502
|
+
/**
|
|
64503
|
+
* A block argument. Detailed below.
|
|
64504
|
+
*/
|
|
64505
|
+
conditions: pulumi.Input<pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleConditionArgs>[]>;
|
|
64506
|
+
/**
|
|
64507
|
+
* A user-defined description that further helps identify the rule.
|
|
64508
|
+
*/
|
|
64509
|
+
description?: pulumi.Input<string>;
|
|
64510
|
+
/**
|
|
64511
|
+
* A set of AWS Region codes where this rule applies.
|
|
64512
|
+
*/
|
|
64513
|
+
edgeLocations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
64514
|
+
/**
|
|
64515
|
+
* An integer from `1` to `65535` indicating the rule's order number. Rules are processed in order from the lowest numbered rule to the highest. Rules stop processing when a rule is matched.
|
|
64516
|
+
*/
|
|
64517
|
+
ruleNumber: pulumi.Input<number>;
|
|
64518
|
+
}
|
|
64519
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleAction {
|
|
64520
|
+
/**
|
|
64521
|
+
* Set of routing policy names to associate when the conditions match.
|
|
64522
|
+
*/
|
|
64523
|
+
associateRoutingPolicies: string[];
|
|
64524
|
+
}
|
|
64525
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleActionArgs {
|
|
64526
|
+
/**
|
|
64527
|
+
* Set of routing policy names to associate when the conditions match.
|
|
64528
|
+
*/
|
|
64529
|
+
associateRoutingPolicies: pulumi.Input<pulumi.Input<string>[]>;
|
|
64530
|
+
}
|
|
64531
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleCondition {
|
|
64532
|
+
/**
|
|
64533
|
+
* Must be `routing-policy-label`.
|
|
64534
|
+
*/
|
|
64535
|
+
type: string;
|
|
64536
|
+
/**
|
|
64537
|
+
* Routing policy label to match.
|
|
64538
|
+
*/
|
|
64539
|
+
value: string;
|
|
64540
|
+
}
|
|
64541
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleConditionArgs {
|
|
64542
|
+
/**
|
|
64543
|
+
* Must be `routing-policy-label`.
|
|
64544
|
+
*/
|
|
64545
|
+
type: pulumi.Input<string>;
|
|
64546
|
+
/**
|
|
64547
|
+
* Routing policy label to match.
|
|
64548
|
+
*/
|
|
64549
|
+
value: pulumi.Input<string>;
|
|
64550
|
+
}
|
|
64119
64551
|
interface GetCoreNetworkPolicyDocumentCoreNetworkConfiguration {
|
|
64120
64552
|
/**
|
|
64121
64553
|
* List of strings containing Autonomous System Numbers (ASNs) to assign to Core Network Edges. By default, the core network automatically assigns an ASN for each Core Network Edge but you can optionally define the ASN in the edge-locations for each Region. The ASN uses an array of integer ranges only from `64512` to `65534` and `4200000000` to `4294967294` expressed as a string like `"64512-65534"`. No other ASN ranges can be used.
|
|
@@ -64218,6 +64650,138 @@ export declare namespace networkmanager {
|
|
|
64218
64650
|
*/
|
|
64219
64651
|
requireAttachmentAcceptance: pulumi.Input<boolean>;
|
|
64220
64652
|
}
|
|
64653
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicy {
|
|
64654
|
+
/**
|
|
64655
|
+
* Description of the routing policy.
|
|
64656
|
+
*/
|
|
64657
|
+
routingPolicyDescription?: string;
|
|
64658
|
+
/**
|
|
64659
|
+
* Direction of the routing policy. Valid values: `inbound`, `outbound`.
|
|
64660
|
+
*/
|
|
64661
|
+
routingPolicyDirection: string;
|
|
64662
|
+
/**
|
|
64663
|
+
* Name of the routing policy. Must be 1-100 alphanumeric characters.
|
|
64664
|
+
*/
|
|
64665
|
+
routingPolicyName: string;
|
|
64666
|
+
/**
|
|
64667
|
+
* Priority number for the routing policy. Must be between 1 and 9999. Lower numbers are evaluated first.
|
|
64668
|
+
*/
|
|
64669
|
+
routingPolicyNumber: number;
|
|
64670
|
+
/**
|
|
64671
|
+
* List of routing policy rules. Each rule defines match conditions and actions. Detailed below.
|
|
64672
|
+
*/
|
|
64673
|
+
routingPolicyRules: inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRule[];
|
|
64674
|
+
}
|
|
64675
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyArgs {
|
|
64676
|
+
/**
|
|
64677
|
+
* Description of the routing policy.
|
|
64678
|
+
*/
|
|
64679
|
+
routingPolicyDescription?: pulumi.Input<string>;
|
|
64680
|
+
/**
|
|
64681
|
+
* Direction of the routing policy. Valid values: `inbound`, `outbound`.
|
|
64682
|
+
*/
|
|
64683
|
+
routingPolicyDirection: pulumi.Input<string>;
|
|
64684
|
+
/**
|
|
64685
|
+
* Name of the routing policy. Must be 1-100 alphanumeric characters.
|
|
64686
|
+
*/
|
|
64687
|
+
routingPolicyName: pulumi.Input<string>;
|
|
64688
|
+
/**
|
|
64689
|
+
* Priority number for the routing policy. Must be between 1 and 9999. Lower numbers are evaluated first.
|
|
64690
|
+
*/
|
|
64691
|
+
routingPolicyNumber: pulumi.Input<number>;
|
|
64692
|
+
/**
|
|
64693
|
+
* List of routing policy rules. Each rule defines match conditions and actions. Detailed below.
|
|
64694
|
+
*/
|
|
64695
|
+
routingPolicyRules: pulumi.Input<pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleArgs>[]>;
|
|
64696
|
+
}
|
|
64697
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRule {
|
|
64698
|
+
/**
|
|
64699
|
+
* Defines the match conditions and actions for the rule. Detailed below.
|
|
64700
|
+
*/
|
|
64701
|
+
ruleDefinition: inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinition;
|
|
64702
|
+
/**
|
|
64703
|
+
* Priority number for the rule within the routing policy. Must be between 1 and 9999. Lower numbers are evaluated first.
|
|
64704
|
+
*/
|
|
64705
|
+
ruleNumber: number;
|
|
64706
|
+
}
|
|
64707
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleArgs {
|
|
64708
|
+
/**
|
|
64709
|
+
* Defines the match conditions and actions for the rule. Detailed below.
|
|
64710
|
+
*/
|
|
64711
|
+
ruleDefinition: pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionArgs>;
|
|
64712
|
+
/**
|
|
64713
|
+
* Priority number for the rule within the routing policy. Must be between 1 and 9999. Lower numbers are evaluated first.
|
|
64714
|
+
*/
|
|
64715
|
+
ruleNumber: pulumi.Input<number>;
|
|
64716
|
+
}
|
|
64717
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinition {
|
|
64718
|
+
/**
|
|
64719
|
+
* Block defining the action to take when conditions match. Detailed below.
|
|
64720
|
+
*/
|
|
64721
|
+
action: inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionAction;
|
|
64722
|
+
/**
|
|
64723
|
+
* Logic to apply when multiple match conditions are present. Valid values: `and`, `or`.
|
|
64724
|
+
*/
|
|
64725
|
+
conditionLogic?: string;
|
|
64726
|
+
/**
|
|
64727
|
+
* List of conditions to match against routes. Detailed below.
|
|
64728
|
+
*/
|
|
64729
|
+
matchConditions?: inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionMatchCondition[];
|
|
64730
|
+
}
|
|
64731
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionArgs {
|
|
64732
|
+
/**
|
|
64733
|
+
* Block defining the action to take when conditions match. Detailed below.
|
|
64734
|
+
*/
|
|
64735
|
+
action: pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionActionArgs>;
|
|
64736
|
+
/**
|
|
64737
|
+
* Logic to apply when multiple match conditions are present. Valid values: `and`, `or`.
|
|
64738
|
+
*/
|
|
64739
|
+
conditionLogic?: pulumi.Input<string>;
|
|
64740
|
+
/**
|
|
64741
|
+
* List of conditions to match against routes. Detailed below.
|
|
64742
|
+
*/
|
|
64743
|
+
matchConditions?: pulumi.Input<pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionMatchConditionArgs>[]>;
|
|
64744
|
+
}
|
|
64745
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionAction {
|
|
64746
|
+
/**
|
|
64747
|
+
* Type of action to perform. Valid values: `drop`, `allow`, `summarize`, `prepend-asn-list`, `remove-asn-list`, `replace-asn-list`, `add-community`, `remove-community`, `set-med`, `set-local-preference`.
|
|
64748
|
+
*/
|
|
64749
|
+
type: string;
|
|
64750
|
+
/**
|
|
64751
|
+
* Value for the action, required for certain action types.
|
|
64752
|
+
*/
|
|
64753
|
+
value?: string;
|
|
64754
|
+
}
|
|
64755
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionActionArgs {
|
|
64756
|
+
/**
|
|
64757
|
+
* Type of action to perform. Valid values: `drop`, `allow`, `summarize`, `prepend-asn-list`, `remove-asn-list`, `replace-asn-list`, `add-community`, `remove-community`, `set-med`, `set-local-preference`.
|
|
64758
|
+
*/
|
|
64759
|
+
type: pulumi.Input<string>;
|
|
64760
|
+
/**
|
|
64761
|
+
* Value for the action, required for certain action types.
|
|
64762
|
+
*/
|
|
64763
|
+
value?: pulumi.Input<string>;
|
|
64764
|
+
}
|
|
64765
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionMatchCondition {
|
|
64766
|
+
/**
|
|
64767
|
+
* Type of condition to match. Valid values: `prefix-equals`, `prefix-in-cidr`, `prefix-in-prefix-list`, `asn-in-as-path`, `community-in-list`, `med-equals`.
|
|
64768
|
+
*/
|
|
64769
|
+
type: string;
|
|
64770
|
+
/**
|
|
64771
|
+
* Value to match against, depending on the condition type.
|
|
64772
|
+
*/
|
|
64773
|
+
value: string;
|
|
64774
|
+
}
|
|
64775
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionMatchConditionArgs {
|
|
64776
|
+
/**
|
|
64777
|
+
* Type of condition to match. Valid values: `prefix-equals`, `prefix-in-cidr`, `prefix-in-prefix-list`, `asn-in-as-path`, `community-in-list`, `med-equals`.
|
|
64778
|
+
*/
|
|
64779
|
+
type: pulumi.Input<string>;
|
|
64780
|
+
/**
|
|
64781
|
+
* Value to match against, depending on the condition type.
|
|
64782
|
+
*/
|
|
64783
|
+
value: pulumi.Input<string>;
|
|
64784
|
+
}
|
|
64221
64785
|
interface GetCoreNetworkPolicyDocumentSegment {
|
|
64222
64786
|
/**
|
|
64223
64787
|
* List of strings of segment names that explicitly allows only routes from the segments that are listed in the array. Use the `allowFilter` setting if a segment has a well-defined group of other segments that connectivity should be restricted to. It is applied after routes have been shared in `segmentActions`. If a segment is listed in `allowFilter`, attachments between the two segments will have routes if they are also shared in the segment-actions area. For example, you might have a segment named "video-producer" that should only ever share routes with a "video-distributor" segment, no matter how many other share statements are created.
|
|
@@ -64280,7 +64844,7 @@ export declare namespace networkmanager {
|
|
|
64280
64844
|
}
|
|
64281
64845
|
interface GetCoreNetworkPolicyDocumentSegmentAction {
|
|
64282
64846
|
/**
|
|
64283
|
-
* Action to take for the chosen segment. Valid values: `create-route`, `share`, `send-via` and `
|
|
64847
|
+
* Action to take for the chosen segment. Valid values: `create-route`, `share`, `send-via`, `send-to`, and `associate-routing-policy` (available in policy version `2025.11` and later).
|
|
64284
64848
|
*/
|
|
64285
64849
|
action: string;
|
|
64286
64850
|
/**
|
|
@@ -64295,6 +64859,10 @@ export declare namespace networkmanager {
|
|
|
64295
64859
|
* A list of strings. Valid values include `["blackhole"]` or a list of attachment ids.
|
|
64296
64860
|
*/
|
|
64297
64861
|
destinations?: string[];
|
|
64862
|
+
/**
|
|
64863
|
+
* Associates routing policies with specific edge location pairs. Available in policy version `2025.11` and later. Detailed below.
|
|
64864
|
+
*/
|
|
64865
|
+
edgeLocationAssociation?: inputs.networkmanager.GetCoreNetworkPolicyDocumentSegmentActionEdgeLocationAssociation;
|
|
64298
64866
|
/**
|
|
64299
64867
|
* String. When `action` is `share`, a `mode` value of `attachment-route` places the attachment and return routes in each of the `shareWith` segments. When `action` is `send-via`, indicates the mode used for packets. Valid values: `attachment-route`, `single-hop`, `dual-hop`.
|
|
64300
64868
|
*/
|
|
@@ -64322,7 +64890,7 @@ export declare namespace networkmanager {
|
|
|
64322
64890
|
}
|
|
64323
64891
|
interface GetCoreNetworkPolicyDocumentSegmentActionArgs {
|
|
64324
64892
|
/**
|
|
64325
|
-
* Action to take for the chosen segment. Valid values: `create-route`, `share`, `send-via` and `
|
|
64893
|
+
* Action to take for the chosen segment. Valid values: `create-route`, `share`, `send-via`, `send-to`, and `associate-routing-policy` (available in policy version `2025.11` and later).
|
|
64326
64894
|
*/
|
|
64327
64895
|
action: pulumi.Input<string>;
|
|
64328
64896
|
/**
|
|
@@ -64337,6 +64905,10 @@ export declare namespace networkmanager {
|
|
|
64337
64905
|
* A list of strings. Valid values include `["blackhole"]` or a list of attachment ids.
|
|
64338
64906
|
*/
|
|
64339
64907
|
destinations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
64908
|
+
/**
|
|
64909
|
+
* Associates routing policies with specific edge location pairs. Available in policy version `2025.11` and later. Detailed below.
|
|
64910
|
+
*/
|
|
64911
|
+
edgeLocationAssociation?: pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentSegmentActionEdgeLocationAssociationArgs>;
|
|
64340
64912
|
/**
|
|
64341
64913
|
* String. When `action` is `share`, a `mode` value of `attachment-route` places the attachment and return routes in each of the `shareWith` segments. When `action` is `send-via`, indicates the mode used for packets. Valid values: `attachment-route`, `single-hop`, `dual-hop`.
|
|
64342
64914
|
*/
|
|
@@ -64362,6 +64934,34 @@ export declare namespace networkmanager {
|
|
|
64362
64934
|
*/
|
|
64363
64935
|
whenSentTo?: pulumi.Input<inputs.networkmanager.GetCoreNetworkPolicyDocumentSegmentActionWhenSentToArgs>;
|
|
64364
64936
|
}
|
|
64937
|
+
interface GetCoreNetworkPolicyDocumentSegmentActionEdgeLocationAssociation {
|
|
64938
|
+
/**
|
|
64939
|
+
* The AWS Region code for the first edge location in the association (e.g., `us-east-1`).
|
|
64940
|
+
*/
|
|
64941
|
+
edgeLocation: string;
|
|
64942
|
+
/**
|
|
64943
|
+
* The AWS Region code for the second edge location in the association (e.g., `us-west-2`).
|
|
64944
|
+
*/
|
|
64945
|
+
peerEdgeLocation: string;
|
|
64946
|
+
/**
|
|
64947
|
+
* A set of routing policy names to apply to this edge location pair.
|
|
64948
|
+
*/
|
|
64949
|
+
routingPolicyNames: string[];
|
|
64950
|
+
}
|
|
64951
|
+
interface GetCoreNetworkPolicyDocumentSegmentActionEdgeLocationAssociationArgs {
|
|
64952
|
+
/**
|
|
64953
|
+
* The AWS Region code for the first edge location in the association (e.g., `us-east-1`).
|
|
64954
|
+
*/
|
|
64955
|
+
edgeLocation: pulumi.Input<string>;
|
|
64956
|
+
/**
|
|
64957
|
+
* The AWS Region code for the second edge location in the association (e.g., `us-west-2`).
|
|
64958
|
+
*/
|
|
64959
|
+
peerEdgeLocation: pulumi.Input<string>;
|
|
64960
|
+
/**
|
|
64961
|
+
* A set of routing policy names to apply to this edge location pair.
|
|
64962
|
+
*/
|
|
64963
|
+
routingPolicyNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
64964
|
+
}
|
|
64365
64965
|
interface GetCoreNetworkPolicyDocumentSegmentActionVia {
|
|
64366
64966
|
/**
|
|
64367
64967
|
* A list of strings. The network function group to use for the service insertion action.
|
|
@@ -72795,6 +73395,9 @@ export declare namespace s3 {
|
|
|
72795
73395
|
Version: pulumi.Input<enums.iam.PolicyDocumentVersion>;
|
|
72796
73396
|
}
|
|
72797
73397
|
interface VectorsIndexEncryptionConfiguration {
|
|
73398
|
+
/**
|
|
73399
|
+
* AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if `sseType` is set to `aws:kms`. To specify the KMS key, you must use the format of the KMS key Amazon Resource Name (ARN).
|
|
73400
|
+
*/
|
|
72798
73401
|
kmsKeyArn: pulumi.Input<string>;
|
|
72799
73402
|
/**
|
|
72800
73403
|
* Type of encryption to use. Valid values: `AES256`, `aws:kms`. Defaults to `AES256`.
|
|
@@ -82506,6 +83109,16 @@ export declare namespace vpclattice {
|
|
|
82506
83109
|
*/
|
|
82507
83110
|
hostedZoneId?: pulumi.Input<string>;
|
|
82508
83111
|
}
|
|
83112
|
+
interface ServiceNetworkVpcAssociationDnsOptions {
|
|
83113
|
+
/**
|
|
83114
|
+
* Preference for which private domains have a private hosted zone created for and associated with the specified VPC. Only supported when `privateDnsEnabled` is `true`. Valid Values are `VERIFIED_DOMAINS_ONLY`, `ALL_DOMAINS`, `VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS` and `SPECIFIED_DOMAINS_ONLY`.
|
|
83115
|
+
*/
|
|
83116
|
+
privateDnsPreference?: pulumi.Input<string>;
|
|
83117
|
+
/**
|
|
83118
|
+
* Private domains to create private hosted zones for and associate with the specified VPC. Only supported when `privateDnsEnabled` is `true` and `privateDnsPreference` is `VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS` or `SPECIFIED_DOMAINS_ONLY`.
|
|
83119
|
+
*/
|
|
83120
|
+
privateDnsSpecifiedDomains?: pulumi.Input<pulumi.Input<string>[]>;
|
|
83121
|
+
}
|
|
82509
83122
|
interface TargetGroupAttachmentTarget {
|
|
82510
83123
|
/**
|
|
82511
83124
|
* The ID of the target. If the target type of the target group is INSTANCE, this is an instance ID. If the target type is IP , this is an IP address. If the target type is LAMBDA, this is the ARN of the Lambda function. If the target type is ALB, this is the ARN of the Application Load Balancer.
|