@pulumi/aws-native 0.116.0 → 0.117.0
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/dataSource.js +1 -1
- package/bedrock/dataSource.js.map +1 -1
- package/bedrock/getDataSource.d.ts +4 -0
- package/bedrock/getDataSource.js.map +1 -1
- package/datasync/getLocationNfs.d.ts +2 -2
- package/datasync/locationNfs.d.ts +4 -4
- package/ec2/vpnConnection.d.ts +10 -0
- package/ec2/vpnConnection.js.map +1 -1
- package/elasticloadbalancingv2/getLoadBalancer.d.ts +1 -0
- package/elasticloadbalancingv2/getLoadBalancer.js.map +1 -1
- package/elasticloadbalancingv2/loadBalancer.d.ts +2 -0
- package/elasticloadbalancingv2/loadBalancer.js.map +1 -1
- package/networkmanager/connectAttachment.d.ts +16 -0
- package/networkmanager/connectAttachment.js +4 -0
- package/networkmanager/connectAttachment.js.map +1 -1
- package/networkmanager/coreNetwork.d.ts +4 -0
- package/networkmanager/coreNetwork.js +2 -0
- package/networkmanager/coreNetwork.js.map +1 -1
- package/networkmanager/getConnectAttachment.d.ts +8 -0
- package/networkmanager/getConnectAttachment.js.map +1 -1
- package/networkmanager/getCoreNetwork.d.ts +4 -0
- package/networkmanager/getCoreNetwork.js.map +1 -1
- package/networkmanager/getSiteToSiteVpnAttachment.d.ts +8 -0
- package/networkmanager/getSiteToSiteVpnAttachment.js.map +1 -1
- package/networkmanager/getTransitGatewayRouteTableAttachment.d.ts +8 -0
- package/networkmanager/getTransitGatewayRouteTableAttachment.js.map +1 -1
- package/networkmanager/getVpcAttachment.d.ts +8 -0
- package/networkmanager/getVpcAttachment.js.map +1 -1
- package/networkmanager/siteToSiteVpnAttachment.d.ts +16 -0
- package/networkmanager/siteToSiteVpnAttachment.js +4 -0
- package/networkmanager/siteToSiteVpnAttachment.js.map +1 -1
- package/networkmanager/transitGatewayRouteTableAttachment.d.ts +16 -0
- package/networkmanager/transitGatewayRouteTableAttachment.js +4 -0
- package/networkmanager/transitGatewayRouteTableAttachment.js.map +1 -1
- package/networkmanager/vpcAttachment.d.ts +12 -0
- package/networkmanager/vpcAttachment.js +4 -0
- package/networkmanager/vpcAttachment.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/route53/getHostedZone.d.ts +1 -1
- package/route53/hostedZone.d.ts +2 -2
- package/types/enums/bedrock/index.d.ts +71 -0
- package/types/enums/bedrock/index.js +36 -1
- package/types/enums/bedrock/index.js.map +1 -1
- package/types/input.d.ts +382 -28
- package/types/output.d.ts +403 -28
package/types/output.d.ts
CHANGED
|
@@ -8389,6 +8389,16 @@ export declare namespace bedrock {
|
|
|
8389
8389
|
*/
|
|
8390
8390
|
s3ObjectKey?: string;
|
|
8391
8391
|
}
|
|
8392
|
+
/**
|
|
8393
|
+
* Settings for a foundation model used to parse documents for a data source.
|
|
8394
|
+
*/
|
|
8395
|
+
interface DataSourceBedrockFoundationModelConfiguration {
|
|
8396
|
+
/**
|
|
8397
|
+
* The model's ARN.
|
|
8398
|
+
*/
|
|
8399
|
+
modelArn: string;
|
|
8400
|
+
parsingPrompt?: outputs.bedrock.DataSourceParsingPrompt;
|
|
8401
|
+
}
|
|
8392
8402
|
/**
|
|
8393
8403
|
* Details about how to chunk the documents in the data source. A chunk refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
|
|
8394
8404
|
*/
|
|
@@ -8406,19 +8416,79 @@ export declare namespace bedrock {
|
|
|
8406
8416
|
* Configurations for when you choose fixed-size chunking. If you set the `chunkingStrategy` as `NONE` , exclude this field.
|
|
8407
8417
|
*/
|
|
8408
8418
|
fixedSizeChunkingConfiguration?: outputs.bedrock.DataSourceFixedSizeChunkingConfiguration;
|
|
8419
|
+
hierarchicalChunkingConfiguration?: outputs.bedrock.DataSourceHierarchicalChunkingConfiguration;
|
|
8420
|
+
semanticChunkingConfiguration?: outputs.bedrock.DataSourceSemanticChunkingConfiguration;
|
|
8409
8421
|
}
|
|
8410
8422
|
/**
|
|
8411
8423
|
* Specifies a raw data source location to ingest.
|
|
8412
8424
|
*/
|
|
8413
8425
|
interface DataSourceConfiguration {
|
|
8426
|
+
confluenceConfiguration?: outputs.bedrock.DataSourceConfluenceDataSourceConfiguration;
|
|
8414
8427
|
/**
|
|
8415
8428
|
* The configuration information to connect to Amazon S3 as your data source.
|
|
8416
8429
|
*/
|
|
8417
|
-
s3Configuration
|
|
8430
|
+
s3Configuration?: outputs.bedrock.DataSourceS3DataSourceConfiguration;
|
|
8431
|
+
salesforceConfiguration?: outputs.bedrock.DataSourceSalesforceDataSourceConfiguration;
|
|
8432
|
+
sharePointConfiguration?: outputs.bedrock.DataSourceSharePointDataSourceConfiguration;
|
|
8418
8433
|
/**
|
|
8419
8434
|
* The type of data source.
|
|
8420
8435
|
*/
|
|
8421
8436
|
type: enums.bedrock.DataSourceType;
|
|
8437
|
+
webConfiguration?: outputs.bedrock.DataSourceWebDataSourceConfiguration;
|
|
8438
|
+
}
|
|
8439
|
+
/**
|
|
8440
|
+
* The configuration of the Confluence content. For example, configuring specific types of Confluence content.
|
|
8441
|
+
*/
|
|
8442
|
+
interface DataSourceConfluenceCrawlerConfiguration {
|
|
8443
|
+
filterConfiguration?: outputs.bedrock.DataSourceCrawlFilterConfiguration;
|
|
8444
|
+
}
|
|
8445
|
+
/**
|
|
8446
|
+
* The configuration information to connect to Confluence as your data source.
|
|
8447
|
+
*/
|
|
8448
|
+
interface DataSourceConfluenceDataSourceConfiguration {
|
|
8449
|
+
crawlerConfiguration?: outputs.bedrock.DataSourceConfluenceCrawlerConfiguration;
|
|
8450
|
+
sourceConfiguration: outputs.bedrock.DataSourceConfluenceSourceConfiguration;
|
|
8451
|
+
}
|
|
8452
|
+
/**
|
|
8453
|
+
* The endpoint information to connect to your Confluence data source.
|
|
8454
|
+
*/
|
|
8455
|
+
interface DataSourceConfluenceSourceConfiguration {
|
|
8456
|
+
/**
|
|
8457
|
+
* The supported authentication type to authenticate and connect to your Confluence instance.
|
|
8458
|
+
*/
|
|
8459
|
+
authType: enums.bedrock.DataSourceConfluenceSourceConfigurationAuthType;
|
|
8460
|
+
/**
|
|
8461
|
+
* The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Confluence instance URL. For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see Confluence connection configuration.
|
|
8462
|
+
*/
|
|
8463
|
+
credentialsSecretArn: string;
|
|
8464
|
+
/**
|
|
8465
|
+
* The supported host type, whether online/cloud or server/on-premises.
|
|
8466
|
+
*/
|
|
8467
|
+
hostType: enums.bedrock.DataSourceConfluenceSourceConfigurationHostType;
|
|
8468
|
+
/**
|
|
8469
|
+
* The Confluence host URL or instance URL.
|
|
8470
|
+
*/
|
|
8471
|
+
hostUrl: string;
|
|
8472
|
+
}
|
|
8473
|
+
/**
|
|
8474
|
+
* The type of filtering that you want to apply to certain objects or content of the data source. For example, the PATTERN type is regular expression patterns you can apply to filter your content.
|
|
8475
|
+
*/
|
|
8476
|
+
interface DataSourceCrawlFilterConfiguration {
|
|
8477
|
+
patternObjectFilter?: outputs.bedrock.DataSourcePatternObjectFilterConfiguration;
|
|
8478
|
+
/**
|
|
8479
|
+
* The crawl filter type.
|
|
8480
|
+
*/
|
|
8481
|
+
type: enums.bedrock.DataSourceCrawlFilterConfigurationType;
|
|
8482
|
+
}
|
|
8483
|
+
/**
|
|
8484
|
+
* Settings for customizing steps in the data source content ingestion pipeline.
|
|
8485
|
+
*/
|
|
8486
|
+
interface DataSourceCustomTransformationConfiguration {
|
|
8487
|
+
intermediateStorage: outputs.bedrock.DataSourceIntermediateStorage;
|
|
8488
|
+
/**
|
|
8489
|
+
* A list of Lambda functions that process documents.
|
|
8490
|
+
*/
|
|
8491
|
+
transformations: outputs.bedrock.DataSourceTransformation[];
|
|
8422
8492
|
}
|
|
8423
8493
|
/**
|
|
8424
8494
|
* Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
@@ -8434,7 +8504,68 @@ export declare namespace bedrock {
|
|
|
8434
8504
|
overlapPercentage: number;
|
|
8435
8505
|
}
|
|
8436
8506
|
/**
|
|
8437
|
-
*
|
|
8507
|
+
* Configurations for when you choose hierarchical chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
8508
|
+
*/
|
|
8509
|
+
interface DataSourceHierarchicalChunkingConfiguration {
|
|
8510
|
+
/**
|
|
8511
|
+
* Token settings for each layer.
|
|
8512
|
+
*/
|
|
8513
|
+
levelConfigurations: outputs.bedrock.DataSourceHierarchicalChunkingLevelConfiguration[];
|
|
8514
|
+
/**
|
|
8515
|
+
* The number of tokens to repeat across chunks in the same layer.
|
|
8516
|
+
*/
|
|
8517
|
+
overlapTokens: number;
|
|
8518
|
+
}
|
|
8519
|
+
/**
|
|
8520
|
+
* Token settings for a layer in a hierarchical chunking configuration.
|
|
8521
|
+
*/
|
|
8522
|
+
interface DataSourceHierarchicalChunkingLevelConfiguration {
|
|
8523
|
+
/**
|
|
8524
|
+
* The maximum number of tokens that a chunk can contain in this layer.
|
|
8525
|
+
*/
|
|
8526
|
+
maxTokens: number;
|
|
8527
|
+
}
|
|
8528
|
+
/**
|
|
8529
|
+
* A location for storing content from data sources temporarily as it is processed by custom components in the ingestion pipeline.
|
|
8530
|
+
*/
|
|
8531
|
+
interface DataSourceIntermediateStorage {
|
|
8532
|
+
s3Location: outputs.bedrock.DataSourceS3Location;
|
|
8533
|
+
}
|
|
8534
|
+
/**
|
|
8535
|
+
* Settings for parsing document contents
|
|
8536
|
+
*/
|
|
8537
|
+
interface DataSourceParsingConfiguration {
|
|
8538
|
+
bedrockFoundationModelConfiguration?: outputs.bedrock.DataSourceBedrockFoundationModelConfiguration;
|
|
8539
|
+
parsingStrategy: enums.bedrock.DataSourceParsingStrategy;
|
|
8540
|
+
}
|
|
8541
|
+
/**
|
|
8542
|
+
* Instructions for interpreting the contents of a document.
|
|
8543
|
+
*/
|
|
8544
|
+
interface DataSourceParsingPrompt {
|
|
8545
|
+
/**
|
|
8546
|
+
* Instructions for interpreting the contents of a document.
|
|
8547
|
+
*/
|
|
8548
|
+
parsingPromptText: string;
|
|
8549
|
+
}
|
|
8550
|
+
/**
|
|
8551
|
+
* The specific filters applied to your data source content. You can filter out or include certain content.
|
|
8552
|
+
*/
|
|
8553
|
+
interface DataSourcePatternObjectFilter {
|
|
8554
|
+
exclusionFilters?: string[];
|
|
8555
|
+
inclusionFilters?: string[];
|
|
8556
|
+
/**
|
|
8557
|
+
* The supported object type or content type of the data source.
|
|
8558
|
+
*/
|
|
8559
|
+
objectType: string;
|
|
8560
|
+
}
|
|
8561
|
+
/**
|
|
8562
|
+
* The configuration of specific filters applied to your data source content. You can filter out or include certain content.
|
|
8563
|
+
*/
|
|
8564
|
+
interface DataSourcePatternObjectFilterConfiguration {
|
|
8565
|
+
filters: outputs.bedrock.DataSourcePatternObjectFilter[];
|
|
8566
|
+
}
|
|
8567
|
+
/**
|
|
8568
|
+
* The configuration information to connect to Amazon S3 as your data source.
|
|
8438
8569
|
*/
|
|
8439
8570
|
interface DataSourceS3DataSourceConfiguration {
|
|
8440
8571
|
/**
|
|
@@ -8450,6 +8581,71 @@ export declare namespace bedrock {
|
|
|
8450
8581
|
*/
|
|
8451
8582
|
inclusionPrefixes?: string[];
|
|
8452
8583
|
}
|
|
8584
|
+
/**
|
|
8585
|
+
* An Amazon S3 location.
|
|
8586
|
+
*/
|
|
8587
|
+
interface DataSourceS3Location {
|
|
8588
|
+
/**
|
|
8589
|
+
* The location's URI
|
|
8590
|
+
*/
|
|
8591
|
+
uri: string;
|
|
8592
|
+
}
|
|
8593
|
+
/**
|
|
8594
|
+
* The configuration of filtering the Salesforce content. For example, configuring regular expression patterns to include or exclude certain content.
|
|
8595
|
+
*/
|
|
8596
|
+
interface DataSourceSalesforceCrawlerConfiguration {
|
|
8597
|
+
filterConfiguration?: outputs.bedrock.DataSourceCrawlFilterConfiguration;
|
|
8598
|
+
}
|
|
8599
|
+
/**
|
|
8600
|
+
* The configuration information to connect to Salesforce as your data source.
|
|
8601
|
+
*/
|
|
8602
|
+
interface DataSourceSalesforceDataSourceConfiguration {
|
|
8603
|
+
crawlerConfiguration?: outputs.bedrock.DataSourceSalesforceCrawlerConfiguration;
|
|
8604
|
+
sourceConfiguration: outputs.bedrock.DataSourceSalesforceSourceConfiguration;
|
|
8605
|
+
}
|
|
8606
|
+
/**
|
|
8607
|
+
* The endpoint information to connect to your Salesforce data source.
|
|
8608
|
+
*/
|
|
8609
|
+
interface DataSourceSalesforceSourceConfiguration {
|
|
8610
|
+
/**
|
|
8611
|
+
* The supported authentication type to authenticate and connect to your Salesforce instance.
|
|
8612
|
+
*/
|
|
8613
|
+
authType: enums.bedrock.DataSourceSalesforceSourceConfigurationAuthType;
|
|
8614
|
+
/**
|
|
8615
|
+
* The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Salesforce instance URL. For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see Salesforce connection configuration.
|
|
8616
|
+
*/
|
|
8617
|
+
credentialsSecretArn: string;
|
|
8618
|
+
/**
|
|
8619
|
+
* The Salesforce host URL or instance URL.
|
|
8620
|
+
*/
|
|
8621
|
+
hostUrl: string;
|
|
8622
|
+
}
|
|
8623
|
+
/**
|
|
8624
|
+
* A seed url object.
|
|
8625
|
+
*/
|
|
8626
|
+
interface DataSourceSeedUrl {
|
|
8627
|
+
/**
|
|
8628
|
+
* A web url.
|
|
8629
|
+
*/
|
|
8630
|
+
url: string;
|
|
8631
|
+
}
|
|
8632
|
+
/**
|
|
8633
|
+
* Configurations for when you choose semantic chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
8634
|
+
*/
|
|
8635
|
+
interface DataSourceSemanticChunkingConfiguration {
|
|
8636
|
+
/**
|
|
8637
|
+
* The dissimilarity threshold for splitting chunks.
|
|
8638
|
+
*/
|
|
8639
|
+
breakpointPercentileThreshold: number;
|
|
8640
|
+
/**
|
|
8641
|
+
* The buffer size.
|
|
8642
|
+
*/
|
|
8643
|
+
bufferSize: number;
|
|
8644
|
+
/**
|
|
8645
|
+
* The maximum number of tokens that a chunk can contain.
|
|
8646
|
+
*/
|
|
8647
|
+
maxTokens: number;
|
|
8648
|
+
}
|
|
8453
8649
|
/**
|
|
8454
8650
|
* Contains details about the server-side encryption for the data source.
|
|
8455
8651
|
*/
|
|
@@ -8459,6 +8655,79 @@ export declare namespace bedrock {
|
|
|
8459
8655
|
*/
|
|
8460
8656
|
kmsKeyArn?: string;
|
|
8461
8657
|
}
|
|
8658
|
+
/**
|
|
8659
|
+
* The configuration of the SharePoint content. For example, configuring specific types of SharePoint content.
|
|
8660
|
+
*/
|
|
8661
|
+
interface DataSourceSharePointCrawlerConfiguration {
|
|
8662
|
+
filterConfiguration?: outputs.bedrock.DataSourceCrawlFilterConfiguration;
|
|
8663
|
+
}
|
|
8664
|
+
/**
|
|
8665
|
+
* The configuration information to connect to SharePoint as your data source.
|
|
8666
|
+
*/
|
|
8667
|
+
interface DataSourceSharePointDataSourceConfiguration {
|
|
8668
|
+
crawlerConfiguration?: outputs.bedrock.DataSourceSharePointCrawlerConfiguration;
|
|
8669
|
+
sourceConfiguration: outputs.bedrock.DataSourceSharePointSourceConfiguration;
|
|
8670
|
+
}
|
|
8671
|
+
/**
|
|
8672
|
+
* The endpoint information to connect to your SharePoint data source.
|
|
8673
|
+
*/
|
|
8674
|
+
interface DataSourceSharePointSourceConfiguration {
|
|
8675
|
+
/**
|
|
8676
|
+
* The supported authentication type to authenticate and connect to your SharePoint site/sites.
|
|
8677
|
+
*/
|
|
8678
|
+
authType: enums.bedrock.DataSourceSharePointSourceConfigurationAuthType;
|
|
8679
|
+
/**
|
|
8680
|
+
* The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your SharePoint site/sites. For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see SharePoint connection configuration.
|
|
8681
|
+
*/
|
|
8682
|
+
credentialsSecretArn: string;
|
|
8683
|
+
/**
|
|
8684
|
+
* The domain of your SharePoint instance or site URL/URLs.
|
|
8685
|
+
*/
|
|
8686
|
+
domain: string;
|
|
8687
|
+
/**
|
|
8688
|
+
* The supported host type, whether online/cloud or server/on-premises.
|
|
8689
|
+
*/
|
|
8690
|
+
hostType: enums.bedrock.DataSourceSharePointSourceConfigurationHostType;
|
|
8691
|
+
/**
|
|
8692
|
+
* A list of one or more SharePoint site URLs.
|
|
8693
|
+
*/
|
|
8694
|
+
siteUrls: string[];
|
|
8695
|
+
/**
|
|
8696
|
+
* The identifier of your Microsoft 365 tenant.
|
|
8697
|
+
*/
|
|
8698
|
+
tenantId?: string;
|
|
8699
|
+
}
|
|
8700
|
+
/**
|
|
8701
|
+
* A Lambda function that processes documents.
|
|
8702
|
+
*/
|
|
8703
|
+
interface DataSourceTransformation {
|
|
8704
|
+
/**
|
|
8705
|
+
* When the service applies the transformation.
|
|
8706
|
+
*/
|
|
8707
|
+
stepToApply: enums.bedrock.DataSourceTransformationStepToApply;
|
|
8708
|
+
transformationFunction: outputs.bedrock.DataSourceTransformationFunction;
|
|
8709
|
+
}
|
|
8710
|
+
/**
|
|
8711
|
+
* A Lambda function that processes documents.
|
|
8712
|
+
*/
|
|
8713
|
+
interface DataSourceTransformationFunction {
|
|
8714
|
+
transformationLambdaConfiguration: outputs.bedrock.DataSourceTransformationLambdaConfiguration;
|
|
8715
|
+
}
|
|
8716
|
+
/**
|
|
8717
|
+
* A Lambda function that processes documents.
|
|
8718
|
+
*/
|
|
8719
|
+
interface DataSourceTransformationLambdaConfiguration {
|
|
8720
|
+
/**
|
|
8721
|
+
* The function's ARN identifier.
|
|
8722
|
+
*/
|
|
8723
|
+
lambdaArn: string;
|
|
8724
|
+
}
|
|
8725
|
+
/**
|
|
8726
|
+
* A url configuration.
|
|
8727
|
+
*/
|
|
8728
|
+
interface DataSourceUrlConfiguration {
|
|
8729
|
+
seedUrls: outputs.bedrock.DataSourceSeedUrl[];
|
|
8730
|
+
}
|
|
8462
8731
|
/**
|
|
8463
8732
|
* Details about how to chunk the documents in the data source. A chunk refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
|
|
8464
8733
|
*/
|
|
@@ -8467,6 +8736,39 @@ export declare namespace bedrock {
|
|
|
8467
8736
|
* Details about how to chunk the documents in the data source. A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
|
|
8468
8737
|
*/
|
|
8469
8738
|
chunkingConfiguration?: outputs.bedrock.DataSourceChunkingConfiguration;
|
|
8739
|
+
customTransformationConfiguration?: outputs.bedrock.DataSourceCustomTransformationConfiguration;
|
|
8740
|
+
parsingConfiguration?: outputs.bedrock.DataSourceParsingConfiguration;
|
|
8741
|
+
}
|
|
8742
|
+
/**
|
|
8743
|
+
* Configuration for the web crawler.
|
|
8744
|
+
*/
|
|
8745
|
+
interface DataSourceWebCrawlerConfiguration {
|
|
8746
|
+
crawlerLimits?: outputs.bedrock.DataSourceWebCrawlerLimits;
|
|
8747
|
+
exclusionFilters?: string[];
|
|
8748
|
+
inclusionFilters?: string[];
|
|
8749
|
+
scope?: enums.bedrock.DataSourceWebScopeType;
|
|
8750
|
+
}
|
|
8751
|
+
/**
|
|
8752
|
+
* Limit settings for the web crawler.
|
|
8753
|
+
*/
|
|
8754
|
+
interface DataSourceWebCrawlerLimits {
|
|
8755
|
+
/**
|
|
8756
|
+
* Rate of web URLs retrieved per minute.
|
|
8757
|
+
*/
|
|
8758
|
+
rateLimit?: number;
|
|
8759
|
+
}
|
|
8760
|
+
/**
|
|
8761
|
+
* Configures a web data source location.
|
|
8762
|
+
*/
|
|
8763
|
+
interface DataSourceWebDataSourceConfiguration {
|
|
8764
|
+
crawlerConfiguration?: outputs.bedrock.DataSourceWebCrawlerConfiguration;
|
|
8765
|
+
sourceConfiguration: outputs.bedrock.DataSourceWebSourceConfiguration;
|
|
8766
|
+
}
|
|
8767
|
+
/**
|
|
8768
|
+
* A web source configuration.
|
|
8769
|
+
*/
|
|
8770
|
+
interface DataSourceWebSourceConfiguration {
|
|
8771
|
+
urlConfiguration: outputs.bedrock.DataSourceUrlConfiguration;
|
|
8470
8772
|
}
|
|
8471
8773
|
/**
|
|
8472
8774
|
* Details about the routing configuration for a Flow alias.
|
|
@@ -13283,7 +13585,7 @@ export declare namespace cognito {
|
|
|
13283
13585
|
interface UserPoolAddOns {
|
|
13284
13586
|
advancedSecurityAdditionalFlows?: outputs.cognito.UserPoolAdvancedSecurityAdditionalFlows;
|
|
13285
13587
|
/**
|
|
13286
|
-
* The operating mode of advanced security features in your user pool.
|
|
13588
|
+
* The operating mode of advanced security features for standard authentication types in your user pool, including username-password and secure remote password (SRP) authentication.
|
|
13287
13589
|
*/
|
|
13288
13590
|
advancedSecurityMode?: string;
|
|
13289
13591
|
}
|
|
@@ -13516,6 +13818,11 @@ export declare namespace cognito {
|
|
|
13516
13818
|
* The minimum length of the password in the policy that you have set. This value can't be less than 6.
|
|
13517
13819
|
*/
|
|
13518
13820
|
minimumLength?: number;
|
|
13821
|
+
/**
|
|
13822
|
+
* The number of previous passwords that you want Amazon Cognito to restrict each user from reusing. Users can't set a password that matches any of `n` previous passwords, where `n` is the value of `PasswordHistorySize` .
|
|
13823
|
+
*
|
|
13824
|
+
* Password history isn't enforced and isn't displayed in [DescribeUserPool](https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeUserPool.html) responses when you set this value to `0` or don't provide it. To activate this setting, [advanced security features](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pool-settings-advanced-security.html) must be active in your user pool.
|
|
13825
|
+
*/
|
|
13519
13826
|
passwordHistorySize?: number;
|
|
13520
13827
|
/**
|
|
13521
13828
|
* In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
|
|
@@ -18441,15 +18748,11 @@ export declare namespace ec2 {
|
|
|
18441
18748
|
}
|
|
18442
18749
|
interface CapacityReservationTag {
|
|
18443
18750
|
/**
|
|
18444
|
-
* The key
|
|
18445
|
-
*
|
|
18446
|
-
* Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with `aws:` .
|
|
18751
|
+
* The tag key.
|
|
18447
18752
|
*/
|
|
18448
18753
|
key: string;
|
|
18449
18754
|
/**
|
|
18450
|
-
* The value
|
|
18451
|
-
*
|
|
18452
|
-
* Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
|
|
18755
|
+
* The tag value.
|
|
18453
18756
|
*/
|
|
18454
18757
|
value: string;
|
|
18455
18758
|
}
|
|
@@ -44477,6 +44780,23 @@ export declare namespace networkmanager {
|
|
|
44477
44780
|
*/
|
|
44478
44781
|
protocol?: string;
|
|
44479
44782
|
}
|
|
44783
|
+
/**
|
|
44784
|
+
* The attachment to move from one network function group to another.
|
|
44785
|
+
*/
|
|
44786
|
+
interface ConnectAttachmentProposedNetworkFunctionGroupChange {
|
|
44787
|
+
/**
|
|
44788
|
+
* The rule number in the policy document that applies to this change.
|
|
44789
|
+
*/
|
|
44790
|
+
attachmentPolicyRuleNumber?: number;
|
|
44791
|
+
/**
|
|
44792
|
+
* The name of the network function group to change.
|
|
44793
|
+
*/
|
|
44794
|
+
networkFunctionGroupName?: string;
|
|
44795
|
+
/**
|
|
44796
|
+
* The key-value tags that changed for the network function group.
|
|
44797
|
+
*/
|
|
44798
|
+
tags?: outputs.networkmanager.ConnectAttachmentTag[];
|
|
44799
|
+
}
|
|
44480
44800
|
/**
|
|
44481
44801
|
* The attachment to move from one segment to another.
|
|
44482
44802
|
*/
|
|
@@ -44573,6 +44893,27 @@ export declare namespace networkmanager {
|
|
|
44573
44893
|
*/
|
|
44574
44894
|
insideCidrBlocks?: string[];
|
|
44575
44895
|
}
|
|
44896
|
+
interface CoreNetworkNetworkFunctionGroup {
|
|
44897
|
+
/**
|
|
44898
|
+
* The core network edge locations.
|
|
44899
|
+
*/
|
|
44900
|
+
edgeLocations?: string[];
|
|
44901
|
+
/**
|
|
44902
|
+
* Name of network function group
|
|
44903
|
+
*/
|
|
44904
|
+
name?: string;
|
|
44905
|
+
/**
|
|
44906
|
+
* The segments associated with the network function group.
|
|
44907
|
+
*/
|
|
44908
|
+
segments?: outputs.networkmanager.CoreNetworkNetworkFunctionGroupSegmentsProperties;
|
|
44909
|
+
}
|
|
44910
|
+
/**
|
|
44911
|
+
* The segments associated with the network function group.
|
|
44912
|
+
*/
|
|
44913
|
+
interface CoreNetworkNetworkFunctionGroupSegmentsProperties {
|
|
44914
|
+
sendTo?: string[];
|
|
44915
|
+
sendVia?: string[];
|
|
44916
|
+
}
|
|
44576
44917
|
interface CoreNetworkSegment {
|
|
44577
44918
|
/**
|
|
44578
44919
|
* The Regions where the edges are located.
|
|
@@ -44647,6 +44988,23 @@ export declare namespace networkmanager {
|
|
|
44647
44988
|
*/
|
|
44648
44989
|
longitude?: string;
|
|
44649
44990
|
}
|
|
44991
|
+
/**
|
|
44992
|
+
* The attachment to move from one network function group to another.
|
|
44993
|
+
*/
|
|
44994
|
+
interface SiteToSiteVpnAttachmentProposedNetworkFunctionGroupChange {
|
|
44995
|
+
/**
|
|
44996
|
+
* The rule number in the policy document that applies to this change.
|
|
44997
|
+
*/
|
|
44998
|
+
attachmentPolicyRuleNumber?: number;
|
|
44999
|
+
/**
|
|
45000
|
+
* The name of the network function group to change.
|
|
45001
|
+
*/
|
|
45002
|
+
networkFunctionGroupName?: string;
|
|
45003
|
+
/**
|
|
45004
|
+
* The key-value tags that changed for the network function group.
|
|
45005
|
+
*/
|
|
45006
|
+
tags?: outputs.networkmanager.SiteToSiteVpnAttachmentTag[];
|
|
45007
|
+
}
|
|
44650
45008
|
/**
|
|
44651
45009
|
* The attachment to move from one segment to another.
|
|
44652
45010
|
*/
|
|
@@ -44677,6 +45035,23 @@ export declare namespace networkmanager {
|
|
|
44677
45035
|
*/
|
|
44678
45036
|
value: string;
|
|
44679
45037
|
}
|
|
45038
|
+
/**
|
|
45039
|
+
* The attachment to move from one network function group to another.
|
|
45040
|
+
*/
|
|
45041
|
+
interface TransitGatewayRouteTableAttachmentProposedNetworkFunctionGroupChange {
|
|
45042
|
+
/**
|
|
45043
|
+
* The rule number in the policy document that applies to this change.
|
|
45044
|
+
*/
|
|
45045
|
+
attachmentPolicyRuleNumber?: number;
|
|
45046
|
+
/**
|
|
45047
|
+
* The name of the network function group to change.
|
|
45048
|
+
*/
|
|
45049
|
+
networkFunctionGroupName?: string;
|
|
45050
|
+
/**
|
|
45051
|
+
* The key-value tags that changed for the network function group.
|
|
45052
|
+
*/
|
|
45053
|
+
tags?: outputs.networkmanager.TransitGatewayRouteTableAttachmentTag[];
|
|
45054
|
+
}
|
|
44680
45055
|
/**
|
|
44681
45056
|
* The attachment to move from one segment to another.
|
|
44682
45057
|
*/
|
|
@@ -44707,6 +45082,23 @@ export declare namespace networkmanager {
|
|
|
44707
45082
|
*/
|
|
44708
45083
|
value: string;
|
|
44709
45084
|
}
|
|
45085
|
+
/**
|
|
45086
|
+
* The attachment to move from one network function group to another.
|
|
45087
|
+
*/
|
|
45088
|
+
interface VpcAttachmentProposedNetworkFunctionGroupChange {
|
|
45089
|
+
/**
|
|
45090
|
+
* The rule number in the policy document that applies to this change.
|
|
45091
|
+
*/
|
|
45092
|
+
attachmentPolicyRuleNumber?: number;
|
|
45093
|
+
/**
|
|
45094
|
+
* The name of the network function group to change.
|
|
45095
|
+
*/
|
|
45096
|
+
networkFunctionGroupName?: string;
|
|
45097
|
+
/**
|
|
45098
|
+
* The key-value tags that changed for the network function group.
|
|
45099
|
+
*/
|
|
45100
|
+
tags?: outputs.networkmanager.VpcAttachmentTag[];
|
|
45101
|
+
}
|
|
44710
45102
|
/**
|
|
44711
45103
|
* The attachment to move from one segment to another.
|
|
44712
45104
|
*/
|
|
@@ -74577,25 +74969,6 @@ export declare namespace route53 {
|
|
|
74577
74969
|
*/
|
|
74578
74970
|
cloudWatchLogsLogGroupArn: string;
|
|
74579
74971
|
}
|
|
74580
|
-
/**
|
|
74581
|
-
* A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
|
|
74582
|
-
*/
|
|
74583
|
-
interface HostedZoneTag {
|
|
74584
|
-
/**
|
|
74585
|
-
* The value of ``Key`` depends on the operation that you want to perform:
|
|
74586
|
-
* + *Add a tag to a health check or hosted zone*: ``Key`` is the name that you want to give the new tag.
|
|
74587
|
-
* + *Edit a tag*: ``Key`` is the name of the tag that you want to change the ``Value`` for.
|
|
74588
|
-
* + *Delete a key*: ``Key`` is the name of the tag you want to remove.
|
|
74589
|
-
* + *Give a name to a health check*: Edit the default ``Name`` tag. In the Amazon Route 53 console, the list of your health checks includes a *Name* column that lets you see the name that you've given to each health check.
|
|
74590
|
-
*/
|
|
74591
|
-
key: string;
|
|
74592
|
-
/**
|
|
74593
|
-
* The value of ``Value`` depends on the operation that you want to perform:
|
|
74594
|
-
* + *Add a tag to a health check or hosted zone*: ``Value`` is the value that you want to give the new tag.
|
|
74595
|
-
* + *Edit a tag*: ``Value`` is the new value that you want to assign the tag.
|
|
74596
|
-
*/
|
|
74597
|
-
value: string;
|
|
74598
|
-
}
|
|
74599
74972
|
/**
|
|
74600
74973
|
* *Private hosted zones only:* A complex type that contains information about an Amazon VPC. Route 53 Resolver uses the records in the private hosted zone to route traffic in that VPC.
|
|
74601
74974
|
* For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
|
|
@@ -81363,6 +81736,8 @@ export declare namespace securityhub {
|
|
|
81363
81736
|
enabledStandardIdentifiers?: string[];
|
|
81364
81737
|
/**
|
|
81365
81738
|
* An object that defines which security controls are enabled in the configuration policy. The enablement status of a control is aligned across all of the enabled standards in an account.
|
|
81739
|
+
*
|
|
81740
|
+
* This property is required only if `ServiceEnabled` is set to true in your configuration policy.
|
|
81366
81741
|
*/
|
|
81367
81742
|
securityControlsConfiguration?: outputs.securityhub.ConfigurationPolicySecurityControlsConfiguration;
|
|
81368
81743
|
/**
|