@pulumi/aws 7.14.0-alpha.1765481319 → 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/output.d.ts
CHANGED
|
@@ -12764,14 +12764,198 @@ export declare namespace bedrock {
|
|
|
12764
12764
|
}
|
|
12765
12765
|
interface AgentKnowledgeBaseKnowledgeBaseConfiguration {
|
|
12766
12766
|
/**
|
|
12767
|
-
*
|
|
12767
|
+
* Settings for an Amazon Kendra knowledge base. See `kendraKnowledgeBaseConfiguration` block for details.
|
|
12768
|
+
*/
|
|
12769
|
+
kendraKnowledgeBaseConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationKendraKnowledgeBaseConfiguration;
|
|
12770
|
+
/**
|
|
12771
|
+
* Configurations for a knowledge base connected to an SQL database. See `sqlKnowledgeBaseConfiguration` block for details.
|
|
12772
|
+
*/
|
|
12773
|
+
sqlKnowledgeBaseConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfiguration;
|
|
12774
|
+
/**
|
|
12775
|
+
* Type of data that the data source is converted into for the knowledge base. Valid Values: `VECTOR`, `KENDRA`, `SQL`.
|
|
12768
12776
|
*/
|
|
12769
12777
|
type: string;
|
|
12770
12778
|
/**
|
|
12771
|
-
* Details about the
|
|
12779
|
+
* Details about the model that's used to convert the data source into vector embeddings. See `vectorKnowledgeBaseConfiguration` block for details.
|
|
12772
12780
|
*/
|
|
12773
12781
|
vectorKnowledgeBaseConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationVectorKnowledgeBaseConfiguration;
|
|
12774
12782
|
}
|
|
12783
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationKendraKnowledgeBaseConfiguration {
|
|
12784
|
+
/**
|
|
12785
|
+
* ARN of the Amazon Kendra index.
|
|
12786
|
+
*/
|
|
12787
|
+
kendraIndexArn: string;
|
|
12788
|
+
}
|
|
12789
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfiguration {
|
|
12790
|
+
/**
|
|
12791
|
+
* Configurations for a knowledge base connected to an Amazon Redshift database. See `redshiftConfiguration` block for details.
|
|
12792
|
+
*/
|
|
12793
|
+
redshiftConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfiguration;
|
|
12794
|
+
/**
|
|
12795
|
+
* Type of SQL database to connect to the knowledge base. Valid values: `REDSHIFT`.
|
|
12796
|
+
*/
|
|
12797
|
+
type: string;
|
|
12798
|
+
}
|
|
12799
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfiguration {
|
|
12800
|
+
/**
|
|
12801
|
+
* Configurations for an Amazon Redshift query engine. See `queryEngineConfiguration` block for details.
|
|
12802
|
+
*/
|
|
12803
|
+
queryEngineConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfiguration;
|
|
12804
|
+
/**
|
|
12805
|
+
* Configurations for generating queries. See `queryGenerationConfiguration` block for details.
|
|
12806
|
+
*/
|
|
12807
|
+
queryGenerationConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfiguration;
|
|
12808
|
+
/**
|
|
12809
|
+
* Configurations for Amazon Redshift database storage. See `storageConfiguration` block for details.
|
|
12810
|
+
*/
|
|
12811
|
+
storageConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfiguration;
|
|
12812
|
+
}
|
|
12813
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfiguration {
|
|
12814
|
+
/**
|
|
12815
|
+
* Configurations for a provisioned Amazon Redshift query engine. See `provisionedConfiguration` block for details.
|
|
12816
|
+
*/
|
|
12817
|
+
provisionedConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfiguration;
|
|
12818
|
+
/**
|
|
12819
|
+
* Configurations for a serverless Amazon Redshift query engine. See `serverlessConfiguration` block for details.
|
|
12820
|
+
*/
|
|
12821
|
+
serverlessConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfiguration;
|
|
12822
|
+
/**
|
|
12823
|
+
* Type of query engine. Valid values: `SERVERLESS`, `PROVISIONED`.
|
|
12824
|
+
*/
|
|
12825
|
+
type: string;
|
|
12826
|
+
}
|
|
12827
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfiguration {
|
|
12828
|
+
/**
|
|
12829
|
+
* Configurations for authentication to Amazon Redshift. See `authConfiguration` block for details.
|
|
12830
|
+
*/
|
|
12831
|
+
authConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfigurationAuthConfiguration;
|
|
12832
|
+
/**
|
|
12833
|
+
* ID of the Amazon Redshift cluster.
|
|
12834
|
+
*/
|
|
12835
|
+
clusterIdentifier: string;
|
|
12836
|
+
}
|
|
12837
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationProvisionedConfigurationAuthConfiguration {
|
|
12838
|
+
/**
|
|
12839
|
+
* Database username for authentication to an Amazon Redshift provisioned data warehouse.
|
|
12840
|
+
*/
|
|
12841
|
+
databaseUser?: string;
|
|
12842
|
+
/**
|
|
12843
|
+
* Type of authentication to use. Valid values: `IAM`, `USERNAME_PASSWORD`.
|
|
12844
|
+
*/
|
|
12845
|
+
type: string;
|
|
12846
|
+
/**
|
|
12847
|
+
* ARN of a Secrets Manager secret for authentication.
|
|
12848
|
+
*/
|
|
12849
|
+
usernamePasswordSecretArn?: string;
|
|
12850
|
+
}
|
|
12851
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfiguration {
|
|
12852
|
+
/**
|
|
12853
|
+
* Configurations for authentication to a Redshift Serverless. See `authConfiguration` block for details.
|
|
12854
|
+
*/
|
|
12855
|
+
authConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfigurationAuthConfiguration;
|
|
12856
|
+
/**
|
|
12857
|
+
* ARN of the Amazon Redshift workgroup.
|
|
12858
|
+
*/
|
|
12859
|
+
workgroupArn: string;
|
|
12860
|
+
}
|
|
12861
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryEngineConfigurationServerlessConfigurationAuthConfiguration {
|
|
12862
|
+
/**
|
|
12863
|
+
* Type of authentication to use. Valid values: `IAM`, `USERNAME_PASSWORD`.
|
|
12864
|
+
*/
|
|
12865
|
+
type: string;
|
|
12866
|
+
/**
|
|
12867
|
+
* ARN of a Secrets Manager secret for authentication.
|
|
12868
|
+
*/
|
|
12869
|
+
usernamePasswordSecretArn?: string;
|
|
12870
|
+
}
|
|
12871
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfiguration {
|
|
12872
|
+
/**
|
|
12873
|
+
* Time after which query generation will time out.
|
|
12874
|
+
*/
|
|
12875
|
+
executionTimeoutSeconds?: number;
|
|
12876
|
+
/**
|
|
12877
|
+
* Configurations for context to use during query generation. See `generationContext` block for details.
|
|
12878
|
+
*/
|
|
12879
|
+
generationContext?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContext;
|
|
12880
|
+
}
|
|
12881
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContext {
|
|
12882
|
+
/**
|
|
12883
|
+
* Information about example queries to help the query engine generate appropriate SQL queries. See `curatedQuery` block for details.
|
|
12884
|
+
*/
|
|
12885
|
+
curatedQueries?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextCuratedQuery[];
|
|
12886
|
+
/**
|
|
12887
|
+
* Information about a table in the database. See `table` block for details.
|
|
12888
|
+
*/
|
|
12889
|
+
tables?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTable[];
|
|
12890
|
+
}
|
|
12891
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextCuratedQuery {
|
|
12892
|
+
/**
|
|
12893
|
+
* Example natural language query.
|
|
12894
|
+
*/
|
|
12895
|
+
naturalLanguage: string;
|
|
12896
|
+
/**
|
|
12897
|
+
* SQL equivalent of `naturalLanguage`.
|
|
12898
|
+
*/
|
|
12899
|
+
sql: string;
|
|
12900
|
+
}
|
|
12901
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTable {
|
|
12902
|
+
/**
|
|
12903
|
+
* Information about a column in the table. See `column` block for details.
|
|
12904
|
+
*/
|
|
12905
|
+
columns?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTableColumn[];
|
|
12906
|
+
/**
|
|
12907
|
+
* Description of the table that helps the query engine understand the contents of the table.
|
|
12908
|
+
*/
|
|
12909
|
+
description?: string;
|
|
12910
|
+
/**
|
|
12911
|
+
* Whether to include or exclude the table during query generation. Valid values `INCLUDE`, `EXCLUDE`.
|
|
12912
|
+
*/
|
|
12913
|
+
inclusion?: string;
|
|
12914
|
+
/**
|
|
12915
|
+
* Name of the table for which the other fields in this object apply.
|
|
12916
|
+
*/
|
|
12917
|
+
name: string;
|
|
12918
|
+
}
|
|
12919
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationQueryGenerationConfigurationGenerationContextTableColumn {
|
|
12920
|
+
/**
|
|
12921
|
+
* Description of the column that helps the query engine understand the contents of the column.
|
|
12922
|
+
*/
|
|
12923
|
+
description?: string;
|
|
12924
|
+
/**
|
|
12925
|
+
* Whether to include or exclude the column during query generation. Valid values `INCLUDE`, `EXCLUDE`.
|
|
12926
|
+
*/
|
|
12927
|
+
inclusion?: string;
|
|
12928
|
+
/**
|
|
12929
|
+
* Name of the column for which the other fields in this object apply.
|
|
12930
|
+
*/
|
|
12931
|
+
name?: string;
|
|
12932
|
+
}
|
|
12933
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfiguration {
|
|
12934
|
+
/**
|
|
12935
|
+
* Configurations for storage in AWS Glue Data Catalog. See `awsDataCatalogConfiguration` block for details.
|
|
12936
|
+
*/
|
|
12937
|
+
awsDataCatalogConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationAwsDataCatalogConfiguration;
|
|
12938
|
+
/**
|
|
12939
|
+
* Configurations for storage in Amazon Redshift. See `redshiftConfiguration` block for details.
|
|
12940
|
+
*/
|
|
12941
|
+
redshiftConfiguration?: outputs.bedrock.AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationRedshiftConfiguration;
|
|
12942
|
+
/**
|
|
12943
|
+
* 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`.
|
|
12944
|
+
*/
|
|
12945
|
+
type: string;
|
|
12946
|
+
}
|
|
12947
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationAwsDataCatalogConfiguration {
|
|
12948
|
+
/**
|
|
12949
|
+
* List of names of the tables to use.
|
|
12950
|
+
*/
|
|
12951
|
+
tableNames: string[];
|
|
12952
|
+
}
|
|
12953
|
+
interface AgentKnowledgeBaseKnowledgeBaseConfigurationSqlKnowledgeBaseConfigurationRedshiftConfigurationStorageConfigurationRedshiftConfiguration {
|
|
12954
|
+
/**
|
|
12955
|
+
* Name of the Amazon Redshift database.
|
|
12956
|
+
*/
|
|
12957
|
+
databaseName: string;
|
|
12958
|
+
}
|
|
12775
12959
|
interface AgentKnowledgeBaseKnowledgeBaseConfigurationVectorKnowledgeBaseConfiguration {
|
|
12776
12960
|
/**
|
|
12777
12961
|
* ARN of the model used to create vector embeddings for the knowledge base.
|
|
@@ -12826,7 +13010,19 @@ export declare namespace bedrock {
|
|
|
12826
13010
|
}
|
|
12827
13011
|
interface AgentKnowledgeBaseStorageConfiguration {
|
|
12828
13012
|
/**
|
|
12829
|
-
* The storage configuration of the knowledge base in
|
|
13013
|
+
* The storage configuration of the knowledge base in MongoDB Atlas. See `mongoDbAtlasConfiguration` block for details.
|
|
13014
|
+
*/
|
|
13015
|
+
mongoDbAtlasConfiguration?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfiguration;
|
|
13016
|
+
/**
|
|
13017
|
+
* The storage configuration of the knowledge base in Amazon Neptune Analytics. See `neptuneAnalyticsConfiguration` block for details.
|
|
13018
|
+
*/
|
|
13019
|
+
neptuneAnalyticsConfiguration?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfiguration;
|
|
13020
|
+
/**
|
|
13021
|
+
* The storage configuration of the knowledge base in Amazon OpenSearch Service Managed Cluster. See `opensearchManagedClusterConfiguration` block for details.
|
|
13022
|
+
*/
|
|
13023
|
+
opensearchManagedClusterConfiguration?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfiguration;
|
|
13024
|
+
/**
|
|
13025
|
+
* The storage configuration of the knowledge base in Amazon OpenSearch Service Serverless. See `opensearchServerlessConfiguration` block for details.
|
|
12830
13026
|
*/
|
|
12831
13027
|
opensearchServerlessConfiguration?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationOpensearchServerlessConfiguration;
|
|
12832
13028
|
/**
|
|
@@ -12842,10 +13038,114 @@ export declare namespace bedrock {
|
|
|
12842
13038
|
*/
|
|
12843
13039
|
redisEnterpriseCloudConfiguration?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationRedisEnterpriseCloudConfiguration;
|
|
12844
13040
|
/**
|
|
12845
|
-
*
|
|
13041
|
+
* The storage configuration of the knowledge base in Amazon S3 Vectors. See `s3VectorsConfiguration` block for details.
|
|
13042
|
+
*/
|
|
13043
|
+
s3VectorsConfiguration?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationS3VectorsConfiguration;
|
|
13044
|
+
/**
|
|
13045
|
+
* 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`.
|
|
12846
13046
|
*/
|
|
12847
13047
|
type: string;
|
|
12848
13048
|
}
|
|
13049
|
+
interface AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfiguration {
|
|
13050
|
+
/**
|
|
13051
|
+
* The name of the collection in the MongoDB Atlas database.
|
|
13052
|
+
*/
|
|
13053
|
+
collectionName: string;
|
|
13054
|
+
/**
|
|
13055
|
+
* The ARN of the secret that you created in AWS Secrets Manager that is linked to your MongoDB Atlas database.
|
|
13056
|
+
*/
|
|
13057
|
+
credentialsSecretArn: string;
|
|
13058
|
+
/**
|
|
13059
|
+
* The name of the database in the MongoDB Atlas database.
|
|
13060
|
+
*/
|
|
13061
|
+
databaseName: string;
|
|
13062
|
+
/**
|
|
13063
|
+
* The endpoint URL of the MongoDB Atlas database.
|
|
13064
|
+
*/
|
|
13065
|
+
endpoint: string;
|
|
13066
|
+
/**
|
|
13067
|
+
* The name of the service that hosts the MongoDB Atlas database.
|
|
13068
|
+
*/
|
|
13069
|
+
endpointServiceName?: string;
|
|
13070
|
+
/**
|
|
13071
|
+
* Contains the names of the fields to which to map information about the vector store.
|
|
13072
|
+
*/
|
|
13073
|
+
fieldMapping?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfigurationFieldMapping;
|
|
13074
|
+
/**
|
|
13075
|
+
* The name of the vector index.
|
|
13076
|
+
*/
|
|
13077
|
+
textIndexName?: string;
|
|
13078
|
+
/**
|
|
13079
|
+
* The name of the vector index.
|
|
13080
|
+
*/
|
|
13081
|
+
vectorIndexName: string;
|
|
13082
|
+
}
|
|
13083
|
+
interface AgentKnowledgeBaseStorageConfigurationMongoDbAtlasConfigurationFieldMapping {
|
|
13084
|
+
/**
|
|
13085
|
+
* The name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
13086
|
+
*/
|
|
13087
|
+
metadataField: string;
|
|
13088
|
+
/**
|
|
13089
|
+
* 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.
|
|
13090
|
+
*/
|
|
13091
|
+
textField: string;
|
|
13092
|
+
/**
|
|
13093
|
+
* The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
|
|
13094
|
+
*/
|
|
13095
|
+
vectorField: string;
|
|
13096
|
+
}
|
|
13097
|
+
interface AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfiguration {
|
|
13098
|
+
/**
|
|
13099
|
+
* The names of the fields to which to map information about the vector store. This block supports the following arguments:
|
|
13100
|
+
*/
|
|
13101
|
+
fieldMapping?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfigurationFieldMapping;
|
|
13102
|
+
/**
|
|
13103
|
+
* ARN of the Neptune Analytics vector store.
|
|
13104
|
+
*/
|
|
13105
|
+
graphArn: string;
|
|
13106
|
+
}
|
|
13107
|
+
interface AgentKnowledgeBaseStorageConfigurationNeptuneAnalyticsConfigurationFieldMapping {
|
|
13108
|
+
/**
|
|
13109
|
+
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
13110
|
+
*/
|
|
13111
|
+
metadataField: string;
|
|
13112
|
+
/**
|
|
13113
|
+
* 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.
|
|
13114
|
+
*/
|
|
13115
|
+
textField: string;
|
|
13116
|
+
}
|
|
13117
|
+
interface AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfiguration {
|
|
13118
|
+
/**
|
|
13119
|
+
* ARN of the OpenSearch domain.
|
|
13120
|
+
*/
|
|
13121
|
+
domainArn: string;
|
|
13122
|
+
/**
|
|
13123
|
+
* Endpoint URL of the OpenSearch domain.
|
|
13124
|
+
*/
|
|
13125
|
+
domainEndpoint: string;
|
|
13126
|
+
/**
|
|
13127
|
+
* The names of the fields to which to map information about the vector store. This block supports the following arguments:
|
|
13128
|
+
*/
|
|
13129
|
+
fieldMapping?: outputs.bedrock.AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfigurationFieldMapping;
|
|
13130
|
+
/**
|
|
13131
|
+
* Name of the vector store.
|
|
13132
|
+
*/
|
|
13133
|
+
vectorIndexName: string;
|
|
13134
|
+
}
|
|
13135
|
+
interface AgentKnowledgeBaseStorageConfigurationOpensearchManagedClusterConfigurationFieldMapping {
|
|
13136
|
+
/**
|
|
13137
|
+
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
13138
|
+
*/
|
|
13139
|
+
metadataField: string;
|
|
13140
|
+
/**
|
|
13141
|
+
* 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.
|
|
13142
|
+
*/
|
|
13143
|
+
textField: string;
|
|
13144
|
+
/**
|
|
13145
|
+
* Name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
|
|
13146
|
+
*/
|
|
13147
|
+
vectorField: string;
|
|
13148
|
+
}
|
|
12849
13149
|
interface AgentKnowledgeBaseStorageConfigurationOpensearchServerlessConfiguration {
|
|
12850
13150
|
/**
|
|
12851
13151
|
* ARN of the OpenSearch Service vector store.
|
|
@@ -12864,15 +13164,15 @@ export declare namespace bedrock {
|
|
|
12864
13164
|
/**
|
|
12865
13165
|
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
12866
13166
|
*/
|
|
12867
|
-
metadataField
|
|
13167
|
+
metadataField: string;
|
|
12868
13168
|
/**
|
|
12869
13169
|
* 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.
|
|
12870
13170
|
*/
|
|
12871
|
-
textField
|
|
13171
|
+
textField: string;
|
|
12872
13172
|
/**
|
|
12873
13173
|
* Name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
|
|
12874
13174
|
*/
|
|
12875
|
-
vectorField
|
|
13175
|
+
vectorField: string;
|
|
12876
13176
|
}
|
|
12877
13177
|
interface AgentKnowledgeBaseStorageConfigurationPineconeConfiguration {
|
|
12878
13178
|
/**
|
|
@@ -12896,11 +13196,11 @@ export declare namespace bedrock {
|
|
|
12896
13196
|
/**
|
|
12897
13197
|
* Name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
12898
13198
|
*/
|
|
12899
|
-
metadataField
|
|
13199
|
+
metadataField: string;
|
|
12900
13200
|
/**
|
|
12901
13201
|
* 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.
|
|
12902
13202
|
*/
|
|
12903
|
-
textField
|
|
13203
|
+
textField: string;
|
|
12904
13204
|
}
|
|
12905
13205
|
interface AgentKnowledgeBaseStorageConfigurationRdsConfiguration {
|
|
12906
13206
|
/**
|
|
@@ -12978,6 +13278,20 @@ export declare namespace bedrock {
|
|
|
12978
13278
|
*/
|
|
12979
13279
|
vectorField?: string;
|
|
12980
13280
|
}
|
|
13281
|
+
interface AgentKnowledgeBaseStorageConfigurationS3VectorsConfiguration {
|
|
13282
|
+
/**
|
|
13283
|
+
* ARN of the S3 Vectors index. Conflicts with `indexName` and `vectorBucketArn`.
|
|
13284
|
+
*/
|
|
13285
|
+
indexArn?: string;
|
|
13286
|
+
/**
|
|
13287
|
+
* Name of the S3 Vectors index. Must be specified with `vectorBucketArn`. Conflicts with `indexArn`.
|
|
13288
|
+
*/
|
|
13289
|
+
indexName?: string;
|
|
13290
|
+
/**
|
|
13291
|
+
* ARN of the S3 Vectors vector bucket. Must be specified with `indexName`. Conflicts with `indexArn`.
|
|
13292
|
+
*/
|
|
13293
|
+
vectorBucketArn?: string;
|
|
13294
|
+
}
|
|
12981
13295
|
interface AgentKnowledgeBaseTimeouts {
|
|
12982
13296
|
/**
|
|
12983
13297
|
* 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).
|
|
@@ -17575,6 +17889,44 @@ export declare namespace cloudfront {
|
|
|
17575
17889
|
*/
|
|
17576
17890
|
samplingRate: number;
|
|
17577
17891
|
}
|
|
17892
|
+
interface TrustStoreCaCertificatesBundleSource {
|
|
17893
|
+
/**
|
|
17894
|
+
* Configuration block for the S3 location of the CA certificates bundle. See `caCertificatesBundleS3Location` below.
|
|
17895
|
+
*/
|
|
17896
|
+
caCertificatesBundleS3Location?: outputs.cloudfront.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location;
|
|
17897
|
+
}
|
|
17898
|
+
interface TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location {
|
|
17899
|
+
/**
|
|
17900
|
+
* S3 bucket name containing the CA certificates bundle.
|
|
17901
|
+
*/
|
|
17902
|
+
bucket: string;
|
|
17903
|
+
/**
|
|
17904
|
+
* S3 object key for the CA certificates bundle.
|
|
17905
|
+
*/
|
|
17906
|
+
key: string;
|
|
17907
|
+
/**
|
|
17908
|
+
* AWS region of the S3 bucket.
|
|
17909
|
+
*/
|
|
17910
|
+
region: string;
|
|
17911
|
+
/**
|
|
17912
|
+
* S3 object version ID for the CA certificates bundle.
|
|
17913
|
+
*/
|
|
17914
|
+
version?: string;
|
|
17915
|
+
}
|
|
17916
|
+
interface TrustStoreTimeouts {
|
|
17917
|
+
/**
|
|
17918
|
+
* 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).
|
|
17919
|
+
*/
|
|
17920
|
+
create?: string;
|
|
17921
|
+
/**
|
|
17922
|
+
* 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.
|
|
17923
|
+
*/
|
|
17924
|
+
delete?: string;
|
|
17925
|
+
/**
|
|
17926
|
+
* 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).
|
|
17927
|
+
*/
|
|
17928
|
+
update?: string;
|
|
17929
|
+
}
|
|
17578
17930
|
interface VpcOriginTimeouts {
|
|
17579
17931
|
/**
|
|
17580
17932
|
* 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).
|
|
@@ -19364,6 +19716,10 @@ export declare namespace codebuild {
|
|
|
19364
19716
|
maximumBuildsAllowed?: number;
|
|
19365
19717
|
}
|
|
19366
19718
|
interface ProjectCache {
|
|
19719
|
+
/**
|
|
19720
|
+
* Namespace that determines the scope in which a cache is shared across multiple projects.
|
|
19721
|
+
*/
|
|
19722
|
+
cacheNamespace?: string;
|
|
19367
19723
|
/**
|
|
19368
19724
|
* Location where the AWS CodeBuild project stores cached resources. For
|
|
19369
19725
|
* type `S3`, the value must be a valid S3 bucket name/prefix.
|
|
@@ -36697,11 +37053,11 @@ export declare namespace ecs {
|
|
|
36697
37053
|
}
|
|
36698
37054
|
interface ClusterConfigurationManagedStorageConfiguration {
|
|
36699
37055
|
/**
|
|
36700
|
-
* AWS Key Management Service key
|
|
37056
|
+
* AWS Key Management Service key ARN for the Fargate ephemeral storage.
|
|
36701
37057
|
*/
|
|
36702
37058
|
fargateEphemeralStorageKmsKeyId?: string;
|
|
36703
37059
|
/**
|
|
36704
|
-
* AWS Key Management Service key
|
|
37060
|
+
* AWS Key Management Service key ARN to encrypt the managed storage.
|
|
36705
37061
|
*/
|
|
36706
37062
|
kmsKeyId?: string;
|
|
36707
37063
|
}
|
|
@@ -72167,9 +72523,9 @@ export declare namespace networkmanager {
|
|
|
72167
72523
|
}
|
|
72168
72524
|
interface ConnectPeerBgpOptions {
|
|
72169
72525
|
/**
|
|
72170
|
-
* Peer ASN.
|
|
72526
|
+
* Peer ASN. Supports 2-byte and 4-byte ASNs (1 to 4294967295).
|
|
72171
72527
|
*/
|
|
72172
|
-
peerAsn
|
|
72528
|
+
peerAsn: string;
|
|
72173
72529
|
}
|
|
72174
72530
|
interface ConnectPeerConfiguration {
|
|
72175
72531
|
bgpConfigurations: outputs.networkmanager.ConnectPeerConfigurationBgpConfiguration[];
|
|
@@ -72202,9 +72558,9 @@ export declare namespace networkmanager {
|
|
|
72202
72558
|
*/
|
|
72203
72559
|
peerAddress: string;
|
|
72204
72560
|
/**
|
|
72205
|
-
* Peer ASN.
|
|
72561
|
+
* Peer ASN. Supports 2-byte and 4-byte ASNs (1 to 4294967295).
|
|
72206
72562
|
*/
|
|
72207
|
-
peerAsn:
|
|
72563
|
+
peerAsn: string;
|
|
72208
72564
|
}
|
|
72209
72565
|
interface CoreNetworkEdge {
|
|
72210
72566
|
/**
|
|
@@ -72326,14 +72682,52 @@ export declare namespace networkmanager {
|
|
|
72326
72682
|
*/
|
|
72327
72683
|
operator?: string;
|
|
72328
72684
|
/**
|
|
72329
|
-
*
|
|
72685
|
+
* Must be `routing-policy-label`.
|
|
72330
72686
|
*/
|
|
72331
72687
|
type: string;
|
|
72332
72688
|
/**
|
|
72333
|
-
*
|
|
72689
|
+
* Routing policy label to match.
|
|
72334
72690
|
*/
|
|
72335
72691
|
value?: string;
|
|
72336
72692
|
}
|
|
72693
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRule {
|
|
72694
|
+
/**
|
|
72695
|
+
* Block defining the action to take when conditions match. Detailed below.
|
|
72696
|
+
*/
|
|
72697
|
+
action: outputs.networkmanager.GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleAction;
|
|
72698
|
+
/**
|
|
72699
|
+
* A block argument. Detailed below.
|
|
72700
|
+
*/
|
|
72701
|
+
conditions: outputs.networkmanager.GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleCondition[];
|
|
72702
|
+
/**
|
|
72703
|
+
* A user-defined description that further helps identify the rule.
|
|
72704
|
+
*/
|
|
72705
|
+
description?: string;
|
|
72706
|
+
/**
|
|
72707
|
+
* A set of AWS Region codes where this rule applies.
|
|
72708
|
+
*/
|
|
72709
|
+
edgeLocations?: string[];
|
|
72710
|
+
/**
|
|
72711
|
+
* 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.
|
|
72712
|
+
*/
|
|
72713
|
+
ruleNumber: number;
|
|
72714
|
+
}
|
|
72715
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleAction {
|
|
72716
|
+
/**
|
|
72717
|
+
* Set of routing policy names to associate when the conditions match.
|
|
72718
|
+
*/
|
|
72719
|
+
associateRoutingPolicies: string[];
|
|
72720
|
+
}
|
|
72721
|
+
interface GetCoreNetworkPolicyDocumentAttachmentRoutingPolicyRuleCondition {
|
|
72722
|
+
/**
|
|
72723
|
+
* Must be `routing-policy-label`.
|
|
72724
|
+
*/
|
|
72725
|
+
type: string;
|
|
72726
|
+
/**
|
|
72727
|
+
* Routing policy label to match.
|
|
72728
|
+
*/
|
|
72729
|
+
value: string;
|
|
72730
|
+
}
|
|
72337
72731
|
interface GetCoreNetworkPolicyDocumentCoreNetworkConfiguration {
|
|
72338
72732
|
/**
|
|
72339
72733
|
* 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.
|
|
@@ -72385,6 +72779,72 @@ export declare namespace networkmanager {
|
|
|
72385
72779
|
*/
|
|
72386
72780
|
requireAttachmentAcceptance: boolean;
|
|
72387
72781
|
}
|
|
72782
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicy {
|
|
72783
|
+
/**
|
|
72784
|
+
* Description of the routing policy.
|
|
72785
|
+
*/
|
|
72786
|
+
routingPolicyDescription?: string;
|
|
72787
|
+
/**
|
|
72788
|
+
* Direction of the routing policy. Valid values: `inbound`, `outbound`.
|
|
72789
|
+
*/
|
|
72790
|
+
routingPolicyDirection: string;
|
|
72791
|
+
/**
|
|
72792
|
+
* Name of the routing policy. Must be 1-100 alphanumeric characters.
|
|
72793
|
+
*/
|
|
72794
|
+
routingPolicyName: string;
|
|
72795
|
+
/**
|
|
72796
|
+
* Priority number for the routing policy. Must be between 1 and 9999. Lower numbers are evaluated first.
|
|
72797
|
+
*/
|
|
72798
|
+
routingPolicyNumber: number;
|
|
72799
|
+
/**
|
|
72800
|
+
* List of routing policy rules. Each rule defines match conditions and actions. Detailed below.
|
|
72801
|
+
*/
|
|
72802
|
+
routingPolicyRules: outputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRule[];
|
|
72803
|
+
}
|
|
72804
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRule {
|
|
72805
|
+
/**
|
|
72806
|
+
* Defines the match conditions and actions for the rule. Detailed below.
|
|
72807
|
+
*/
|
|
72808
|
+
ruleDefinition: outputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinition;
|
|
72809
|
+
/**
|
|
72810
|
+
* Priority number for the rule within the routing policy. Must be between 1 and 9999. Lower numbers are evaluated first.
|
|
72811
|
+
*/
|
|
72812
|
+
ruleNumber: number;
|
|
72813
|
+
}
|
|
72814
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinition {
|
|
72815
|
+
/**
|
|
72816
|
+
* Block defining the action to take when conditions match. Detailed below.
|
|
72817
|
+
*/
|
|
72818
|
+
action: outputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionAction;
|
|
72819
|
+
/**
|
|
72820
|
+
* Logic to apply when multiple match conditions are present. Valid values: `and`, `or`.
|
|
72821
|
+
*/
|
|
72822
|
+
conditionLogic?: string;
|
|
72823
|
+
/**
|
|
72824
|
+
* List of conditions to match against routes. Detailed below.
|
|
72825
|
+
*/
|
|
72826
|
+
matchConditions?: outputs.networkmanager.GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionMatchCondition[];
|
|
72827
|
+
}
|
|
72828
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionAction {
|
|
72829
|
+
/**
|
|
72830
|
+
* 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`.
|
|
72831
|
+
*/
|
|
72832
|
+
type: string;
|
|
72833
|
+
/**
|
|
72834
|
+
* Value for the action, required for certain action types.
|
|
72835
|
+
*/
|
|
72836
|
+
value?: string;
|
|
72837
|
+
}
|
|
72838
|
+
interface GetCoreNetworkPolicyDocumentRoutingPolicyRoutingPolicyRuleRuleDefinitionMatchCondition {
|
|
72839
|
+
/**
|
|
72840
|
+
* 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`.
|
|
72841
|
+
*/
|
|
72842
|
+
type: string;
|
|
72843
|
+
/**
|
|
72844
|
+
* Value to match against, depending on the condition type.
|
|
72845
|
+
*/
|
|
72846
|
+
value: string;
|
|
72847
|
+
}
|
|
72388
72848
|
interface GetCoreNetworkPolicyDocumentSegment {
|
|
72389
72849
|
/**
|
|
72390
72850
|
* 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.
|
|
@@ -72417,7 +72877,7 @@ export declare namespace networkmanager {
|
|
|
72417
72877
|
}
|
|
72418
72878
|
interface GetCoreNetworkPolicyDocumentSegmentAction {
|
|
72419
72879
|
/**
|
|
72420
|
-
* Action to take for the chosen segment. Valid values: `create-route`, `share`, `send-via` and `
|
|
72880
|
+
* 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).
|
|
72421
72881
|
*/
|
|
72422
72882
|
action: string;
|
|
72423
72883
|
/**
|
|
@@ -72432,6 +72892,10 @@ export declare namespace networkmanager {
|
|
|
72432
72892
|
* A list of strings. Valid values include `["blackhole"]` or a list of attachment ids.
|
|
72433
72893
|
*/
|
|
72434
72894
|
destinations?: string[];
|
|
72895
|
+
/**
|
|
72896
|
+
* Associates routing policies with specific edge location pairs. Available in policy version `2025.11` and later. Detailed below.
|
|
72897
|
+
*/
|
|
72898
|
+
edgeLocationAssociation?: outputs.networkmanager.GetCoreNetworkPolicyDocumentSegmentActionEdgeLocationAssociation;
|
|
72435
72899
|
/**
|
|
72436
72900
|
* 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`.
|
|
72437
72901
|
*/
|
|
@@ -72457,6 +72921,20 @@ export declare namespace networkmanager {
|
|
|
72457
72921
|
*/
|
|
72458
72922
|
whenSentTo?: outputs.networkmanager.GetCoreNetworkPolicyDocumentSegmentActionWhenSentTo;
|
|
72459
72923
|
}
|
|
72924
|
+
interface GetCoreNetworkPolicyDocumentSegmentActionEdgeLocationAssociation {
|
|
72925
|
+
/**
|
|
72926
|
+
* The AWS Region code for the first edge location in the association (e.g., `us-east-1`).
|
|
72927
|
+
*/
|
|
72928
|
+
edgeLocation: string;
|
|
72929
|
+
/**
|
|
72930
|
+
* The AWS Region code for the second edge location in the association (e.g., `us-west-2`).
|
|
72931
|
+
*/
|
|
72932
|
+
peerEdgeLocation: string;
|
|
72933
|
+
/**
|
|
72934
|
+
* A set of routing policy names to apply to this edge location pair.
|
|
72935
|
+
*/
|
|
72936
|
+
routingPolicyNames: string[];
|
|
72937
|
+
}
|
|
72460
72938
|
interface GetCoreNetworkPolicyDocumentSegmentActionVia {
|
|
72461
72939
|
/**
|
|
72462
72940
|
* A list of strings. The network function group to use for the service insertion action.
|
|
@@ -82386,6 +82864,9 @@ export declare namespace s3 {
|
|
|
82386
82864
|
};
|
|
82387
82865
|
}
|
|
82388
82866
|
interface VectorsIndexEncryptionConfiguration {
|
|
82867
|
+
/**
|
|
82868
|
+
* 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).
|
|
82869
|
+
*/
|
|
82389
82870
|
kmsKeyArn: string;
|
|
82390
82871
|
/**
|
|
82391
82872
|
* Type of encryption to use. Valid values: `AES256`, `aws:kms`. Defaults to `AES256`.
|
|
@@ -92978,6 +93459,16 @@ export declare namespace vpclattice {
|
|
|
92978
93459
|
*/
|
|
92979
93460
|
hostedZoneId: string;
|
|
92980
93461
|
}
|
|
93462
|
+
interface ServiceNetworkVpcAssociationDnsOptions {
|
|
93463
|
+
/**
|
|
93464
|
+
* 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`.
|
|
93465
|
+
*/
|
|
93466
|
+
privateDnsPreference?: string;
|
|
93467
|
+
/**
|
|
93468
|
+
* 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`.
|
|
93469
|
+
*/
|
|
93470
|
+
privateDnsSpecifiedDomains: string[];
|
|
93471
|
+
}
|
|
92981
93472
|
interface TargetGroupAttachmentTarget {
|
|
92982
93473
|
/**
|
|
92983
93474
|
* 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.
|