@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/input.d.ts
CHANGED
|
@@ -8458,6 +8458,16 @@ export declare namespace bedrock {
|
|
|
8458
8458
|
*/
|
|
8459
8459
|
s3ObjectKey?: pulumi.Input<string>;
|
|
8460
8460
|
}
|
|
8461
|
+
/**
|
|
8462
|
+
* Settings for a foundation model used to parse documents for a data source.
|
|
8463
|
+
*/
|
|
8464
|
+
interface DataSourceBedrockFoundationModelConfigurationArgs {
|
|
8465
|
+
/**
|
|
8466
|
+
* The model's ARN.
|
|
8467
|
+
*/
|
|
8468
|
+
modelArn: pulumi.Input<string>;
|
|
8469
|
+
parsingPrompt?: pulumi.Input<inputs.bedrock.DataSourceParsingPromptArgs>;
|
|
8470
|
+
}
|
|
8461
8471
|
/**
|
|
8462
8472
|
* 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.
|
|
8463
8473
|
*/
|
|
@@ -8475,19 +8485,79 @@ export declare namespace bedrock {
|
|
|
8475
8485
|
* Configurations for when you choose fixed-size chunking. If you set the `chunkingStrategy` as `NONE` , exclude this field.
|
|
8476
8486
|
*/
|
|
8477
8487
|
fixedSizeChunkingConfiguration?: pulumi.Input<inputs.bedrock.DataSourceFixedSizeChunkingConfigurationArgs>;
|
|
8488
|
+
hierarchicalChunkingConfiguration?: pulumi.Input<inputs.bedrock.DataSourceHierarchicalChunkingConfigurationArgs>;
|
|
8489
|
+
semanticChunkingConfiguration?: pulumi.Input<inputs.bedrock.DataSourceSemanticChunkingConfigurationArgs>;
|
|
8478
8490
|
}
|
|
8479
8491
|
/**
|
|
8480
8492
|
* Specifies a raw data source location to ingest.
|
|
8481
8493
|
*/
|
|
8482
8494
|
interface DataSourceConfigurationArgs {
|
|
8495
|
+
confluenceConfiguration?: pulumi.Input<inputs.bedrock.DataSourceConfluenceDataSourceConfigurationArgs>;
|
|
8483
8496
|
/**
|
|
8484
8497
|
* The configuration information to connect to Amazon S3 as your data source.
|
|
8485
8498
|
*/
|
|
8486
|
-
s3Configuration
|
|
8499
|
+
s3Configuration?: pulumi.Input<inputs.bedrock.DataSourceS3DataSourceConfigurationArgs>;
|
|
8500
|
+
salesforceConfiguration?: pulumi.Input<inputs.bedrock.DataSourceSalesforceDataSourceConfigurationArgs>;
|
|
8501
|
+
sharePointConfiguration?: pulumi.Input<inputs.bedrock.DataSourceSharePointDataSourceConfigurationArgs>;
|
|
8487
8502
|
/**
|
|
8488
8503
|
* The type of data source.
|
|
8489
8504
|
*/
|
|
8490
8505
|
type: pulumi.Input<enums.bedrock.DataSourceType>;
|
|
8506
|
+
webConfiguration?: pulumi.Input<inputs.bedrock.DataSourceWebDataSourceConfigurationArgs>;
|
|
8507
|
+
}
|
|
8508
|
+
/**
|
|
8509
|
+
* The configuration of the Confluence content. For example, configuring specific types of Confluence content.
|
|
8510
|
+
*/
|
|
8511
|
+
interface DataSourceConfluenceCrawlerConfigurationArgs {
|
|
8512
|
+
filterConfiguration?: pulumi.Input<inputs.bedrock.DataSourceCrawlFilterConfigurationArgs>;
|
|
8513
|
+
}
|
|
8514
|
+
/**
|
|
8515
|
+
* The configuration information to connect to Confluence as your data source.
|
|
8516
|
+
*/
|
|
8517
|
+
interface DataSourceConfluenceDataSourceConfigurationArgs {
|
|
8518
|
+
crawlerConfiguration?: pulumi.Input<inputs.bedrock.DataSourceConfluenceCrawlerConfigurationArgs>;
|
|
8519
|
+
sourceConfiguration: pulumi.Input<inputs.bedrock.DataSourceConfluenceSourceConfigurationArgs>;
|
|
8520
|
+
}
|
|
8521
|
+
/**
|
|
8522
|
+
* The endpoint information to connect to your Confluence data source.
|
|
8523
|
+
*/
|
|
8524
|
+
interface DataSourceConfluenceSourceConfigurationArgs {
|
|
8525
|
+
/**
|
|
8526
|
+
* The supported authentication type to authenticate and connect to your Confluence instance.
|
|
8527
|
+
*/
|
|
8528
|
+
authType: pulumi.Input<enums.bedrock.DataSourceConfluenceSourceConfigurationAuthType>;
|
|
8529
|
+
/**
|
|
8530
|
+
* 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.
|
|
8531
|
+
*/
|
|
8532
|
+
credentialsSecretArn: pulumi.Input<string>;
|
|
8533
|
+
/**
|
|
8534
|
+
* The supported host type, whether online/cloud or server/on-premises.
|
|
8535
|
+
*/
|
|
8536
|
+
hostType: pulumi.Input<enums.bedrock.DataSourceConfluenceSourceConfigurationHostType>;
|
|
8537
|
+
/**
|
|
8538
|
+
* The Confluence host URL or instance URL.
|
|
8539
|
+
*/
|
|
8540
|
+
hostUrl: pulumi.Input<string>;
|
|
8541
|
+
}
|
|
8542
|
+
/**
|
|
8543
|
+
* 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.
|
|
8544
|
+
*/
|
|
8545
|
+
interface DataSourceCrawlFilterConfigurationArgs {
|
|
8546
|
+
patternObjectFilter?: pulumi.Input<inputs.bedrock.DataSourcePatternObjectFilterConfigurationArgs>;
|
|
8547
|
+
/**
|
|
8548
|
+
* The crawl filter type.
|
|
8549
|
+
*/
|
|
8550
|
+
type: pulumi.Input<enums.bedrock.DataSourceCrawlFilterConfigurationType>;
|
|
8551
|
+
}
|
|
8552
|
+
/**
|
|
8553
|
+
* Settings for customizing steps in the data source content ingestion pipeline.
|
|
8554
|
+
*/
|
|
8555
|
+
interface DataSourceCustomTransformationConfigurationArgs {
|
|
8556
|
+
intermediateStorage: pulumi.Input<inputs.bedrock.DataSourceIntermediateStorageArgs>;
|
|
8557
|
+
/**
|
|
8558
|
+
* A list of Lambda functions that process documents.
|
|
8559
|
+
*/
|
|
8560
|
+
transformations: pulumi.Input<pulumi.Input<inputs.bedrock.DataSourceTransformationArgs>[]>;
|
|
8491
8561
|
}
|
|
8492
8562
|
/**
|
|
8493
8563
|
* Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
@@ -8503,7 +8573,68 @@ export declare namespace bedrock {
|
|
|
8503
8573
|
overlapPercentage: pulumi.Input<number>;
|
|
8504
8574
|
}
|
|
8505
8575
|
/**
|
|
8506
|
-
*
|
|
8576
|
+
* Configurations for when you choose hierarchical chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
8577
|
+
*/
|
|
8578
|
+
interface DataSourceHierarchicalChunkingConfigurationArgs {
|
|
8579
|
+
/**
|
|
8580
|
+
* Token settings for each layer.
|
|
8581
|
+
*/
|
|
8582
|
+
levelConfigurations: pulumi.Input<pulumi.Input<inputs.bedrock.DataSourceHierarchicalChunkingLevelConfigurationArgs>[]>;
|
|
8583
|
+
/**
|
|
8584
|
+
* The number of tokens to repeat across chunks in the same layer.
|
|
8585
|
+
*/
|
|
8586
|
+
overlapTokens: pulumi.Input<number>;
|
|
8587
|
+
}
|
|
8588
|
+
/**
|
|
8589
|
+
* Token settings for a layer in a hierarchical chunking configuration.
|
|
8590
|
+
*/
|
|
8591
|
+
interface DataSourceHierarchicalChunkingLevelConfigurationArgs {
|
|
8592
|
+
/**
|
|
8593
|
+
* The maximum number of tokens that a chunk can contain in this layer.
|
|
8594
|
+
*/
|
|
8595
|
+
maxTokens: pulumi.Input<number>;
|
|
8596
|
+
}
|
|
8597
|
+
/**
|
|
8598
|
+
* A location for storing content from data sources temporarily as it is processed by custom components in the ingestion pipeline.
|
|
8599
|
+
*/
|
|
8600
|
+
interface DataSourceIntermediateStorageArgs {
|
|
8601
|
+
s3Location: pulumi.Input<inputs.bedrock.DataSourceS3LocationArgs>;
|
|
8602
|
+
}
|
|
8603
|
+
/**
|
|
8604
|
+
* Settings for parsing document contents
|
|
8605
|
+
*/
|
|
8606
|
+
interface DataSourceParsingConfigurationArgs {
|
|
8607
|
+
bedrockFoundationModelConfiguration?: pulumi.Input<inputs.bedrock.DataSourceBedrockFoundationModelConfigurationArgs>;
|
|
8608
|
+
parsingStrategy: pulumi.Input<enums.bedrock.DataSourceParsingStrategy>;
|
|
8609
|
+
}
|
|
8610
|
+
/**
|
|
8611
|
+
* Instructions for interpreting the contents of a document.
|
|
8612
|
+
*/
|
|
8613
|
+
interface DataSourceParsingPromptArgs {
|
|
8614
|
+
/**
|
|
8615
|
+
* Instructions for interpreting the contents of a document.
|
|
8616
|
+
*/
|
|
8617
|
+
parsingPromptText: pulumi.Input<string>;
|
|
8618
|
+
}
|
|
8619
|
+
/**
|
|
8620
|
+
* The specific filters applied to your data source content. You can filter out or include certain content.
|
|
8621
|
+
*/
|
|
8622
|
+
interface DataSourcePatternObjectFilterArgs {
|
|
8623
|
+
exclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8624
|
+
inclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8625
|
+
/**
|
|
8626
|
+
* The supported object type or content type of the data source.
|
|
8627
|
+
*/
|
|
8628
|
+
objectType: pulumi.Input<string>;
|
|
8629
|
+
}
|
|
8630
|
+
/**
|
|
8631
|
+
* The configuration of specific filters applied to your data source content. You can filter out or include certain content.
|
|
8632
|
+
*/
|
|
8633
|
+
interface DataSourcePatternObjectFilterConfigurationArgs {
|
|
8634
|
+
filters: pulumi.Input<pulumi.Input<inputs.bedrock.DataSourcePatternObjectFilterArgs>[]>;
|
|
8635
|
+
}
|
|
8636
|
+
/**
|
|
8637
|
+
* The configuration information to connect to Amazon S3 as your data source.
|
|
8507
8638
|
*/
|
|
8508
8639
|
interface DataSourceS3DataSourceConfigurationArgs {
|
|
8509
8640
|
/**
|
|
@@ -8519,6 +8650,71 @@ export declare namespace bedrock {
|
|
|
8519
8650
|
*/
|
|
8520
8651
|
inclusionPrefixes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8521
8652
|
}
|
|
8653
|
+
/**
|
|
8654
|
+
* An Amazon S3 location.
|
|
8655
|
+
*/
|
|
8656
|
+
interface DataSourceS3LocationArgs {
|
|
8657
|
+
/**
|
|
8658
|
+
* The location's URI
|
|
8659
|
+
*/
|
|
8660
|
+
uri: pulumi.Input<string>;
|
|
8661
|
+
}
|
|
8662
|
+
/**
|
|
8663
|
+
* The configuration of filtering the Salesforce content. For example, configuring regular expression patterns to include or exclude certain content.
|
|
8664
|
+
*/
|
|
8665
|
+
interface DataSourceSalesforceCrawlerConfigurationArgs {
|
|
8666
|
+
filterConfiguration?: pulumi.Input<inputs.bedrock.DataSourceCrawlFilterConfigurationArgs>;
|
|
8667
|
+
}
|
|
8668
|
+
/**
|
|
8669
|
+
* The configuration information to connect to Salesforce as your data source.
|
|
8670
|
+
*/
|
|
8671
|
+
interface DataSourceSalesforceDataSourceConfigurationArgs {
|
|
8672
|
+
crawlerConfiguration?: pulumi.Input<inputs.bedrock.DataSourceSalesforceCrawlerConfigurationArgs>;
|
|
8673
|
+
sourceConfiguration: pulumi.Input<inputs.bedrock.DataSourceSalesforceSourceConfigurationArgs>;
|
|
8674
|
+
}
|
|
8675
|
+
/**
|
|
8676
|
+
* The endpoint information to connect to your Salesforce data source.
|
|
8677
|
+
*/
|
|
8678
|
+
interface DataSourceSalesforceSourceConfigurationArgs {
|
|
8679
|
+
/**
|
|
8680
|
+
* The supported authentication type to authenticate and connect to your Salesforce instance.
|
|
8681
|
+
*/
|
|
8682
|
+
authType: pulumi.Input<enums.bedrock.DataSourceSalesforceSourceConfigurationAuthType>;
|
|
8683
|
+
/**
|
|
8684
|
+
* 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.
|
|
8685
|
+
*/
|
|
8686
|
+
credentialsSecretArn: pulumi.Input<string>;
|
|
8687
|
+
/**
|
|
8688
|
+
* The Salesforce host URL or instance URL.
|
|
8689
|
+
*/
|
|
8690
|
+
hostUrl: pulumi.Input<string>;
|
|
8691
|
+
}
|
|
8692
|
+
/**
|
|
8693
|
+
* A seed url object.
|
|
8694
|
+
*/
|
|
8695
|
+
interface DataSourceSeedUrlArgs {
|
|
8696
|
+
/**
|
|
8697
|
+
* A web url.
|
|
8698
|
+
*/
|
|
8699
|
+
url: pulumi.Input<string>;
|
|
8700
|
+
}
|
|
8701
|
+
/**
|
|
8702
|
+
* Configurations for when you choose semantic chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
8703
|
+
*/
|
|
8704
|
+
interface DataSourceSemanticChunkingConfigurationArgs {
|
|
8705
|
+
/**
|
|
8706
|
+
* The dissimilarity threshold for splitting chunks.
|
|
8707
|
+
*/
|
|
8708
|
+
breakpointPercentileThreshold: pulumi.Input<number>;
|
|
8709
|
+
/**
|
|
8710
|
+
* The buffer size.
|
|
8711
|
+
*/
|
|
8712
|
+
bufferSize: pulumi.Input<number>;
|
|
8713
|
+
/**
|
|
8714
|
+
* The maximum number of tokens that a chunk can contain.
|
|
8715
|
+
*/
|
|
8716
|
+
maxTokens: pulumi.Input<number>;
|
|
8717
|
+
}
|
|
8522
8718
|
/**
|
|
8523
8719
|
* Contains details about the server-side encryption for the data source.
|
|
8524
8720
|
*/
|
|
@@ -8528,6 +8724,79 @@ export declare namespace bedrock {
|
|
|
8528
8724
|
*/
|
|
8529
8725
|
kmsKeyArn?: pulumi.Input<string>;
|
|
8530
8726
|
}
|
|
8727
|
+
/**
|
|
8728
|
+
* The configuration of the SharePoint content. For example, configuring specific types of SharePoint content.
|
|
8729
|
+
*/
|
|
8730
|
+
interface DataSourceSharePointCrawlerConfigurationArgs {
|
|
8731
|
+
filterConfiguration?: pulumi.Input<inputs.bedrock.DataSourceCrawlFilterConfigurationArgs>;
|
|
8732
|
+
}
|
|
8733
|
+
/**
|
|
8734
|
+
* The configuration information to connect to SharePoint as your data source.
|
|
8735
|
+
*/
|
|
8736
|
+
interface DataSourceSharePointDataSourceConfigurationArgs {
|
|
8737
|
+
crawlerConfiguration?: pulumi.Input<inputs.bedrock.DataSourceSharePointCrawlerConfigurationArgs>;
|
|
8738
|
+
sourceConfiguration: pulumi.Input<inputs.bedrock.DataSourceSharePointSourceConfigurationArgs>;
|
|
8739
|
+
}
|
|
8740
|
+
/**
|
|
8741
|
+
* The endpoint information to connect to your SharePoint data source.
|
|
8742
|
+
*/
|
|
8743
|
+
interface DataSourceSharePointSourceConfigurationArgs {
|
|
8744
|
+
/**
|
|
8745
|
+
* The supported authentication type to authenticate and connect to your SharePoint site/sites.
|
|
8746
|
+
*/
|
|
8747
|
+
authType: pulumi.Input<enums.bedrock.DataSourceSharePointSourceConfigurationAuthType>;
|
|
8748
|
+
/**
|
|
8749
|
+
* 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.
|
|
8750
|
+
*/
|
|
8751
|
+
credentialsSecretArn: pulumi.Input<string>;
|
|
8752
|
+
/**
|
|
8753
|
+
* The domain of your SharePoint instance or site URL/URLs.
|
|
8754
|
+
*/
|
|
8755
|
+
domain: pulumi.Input<string>;
|
|
8756
|
+
/**
|
|
8757
|
+
* The supported host type, whether online/cloud or server/on-premises.
|
|
8758
|
+
*/
|
|
8759
|
+
hostType: pulumi.Input<enums.bedrock.DataSourceSharePointSourceConfigurationHostType>;
|
|
8760
|
+
/**
|
|
8761
|
+
* A list of one or more SharePoint site URLs.
|
|
8762
|
+
*/
|
|
8763
|
+
siteUrls: pulumi.Input<pulumi.Input<string>[]>;
|
|
8764
|
+
/**
|
|
8765
|
+
* The identifier of your Microsoft 365 tenant.
|
|
8766
|
+
*/
|
|
8767
|
+
tenantId?: pulumi.Input<string>;
|
|
8768
|
+
}
|
|
8769
|
+
/**
|
|
8770
|
+
* A Lambda function that processes documents.
|
|
8771
|
+
*/
|
|
8772
|
+
interface DataSourceTransformationArgs {
|
|
8773
|
+
/**
|
|
8774
|
+
* When the service applies the transformation.
|
|
8775
|
+
*/
|
|
8776
|
+
stepToApply: pulumi.Input<enums.bedrock.DataSourceTransformationStepToApply>;
|
|
8777
|
+
transformationFunction: pulumi.Input<inputs.bedrock.DataSourceTransformationFunctionArgs>;
|
|
8778
|
+
}
|
|
8779
|
+
/**
|
|
8780
|
+
* A Lambda function that processes documents.
|
|
8781
|
+
*/
|
|
8782
|
+
interface DataSourceTransformationFunctionArgs {
|
|
8783
|
+
transformationLambdaConfiguration: pulumi.Input<inputs.bedrock.DataSourceTransformationLambdaConfigurationArgs>;
|
|
8784
|
+
}
|
|
8785
|
+
/**
|
|
8786
|
+
* A Lambda function that processes documents.
|
|
8787
|
+
*/
|
|
8788
|
+
interface DataSourceTransformationLambdaConfigurationArgs {
|
|
8789
|
+
/**
|
|
8790
|
+
* The function's ARN identifier.
|
|
8791
|
+
*/
|
|
8792
|
+
lambdaArn: pulumi.Input<string>;
|
|
8793
|
+
}
|
|
8794
|
+
/**
|
|
8795
|
+
* A url configuration.
|
|
8796
|
+
*/
|
|
8797
|
+
interface DataSourceUrlConfigurationArgs {
|
|
8798
|
+
seedUrls: pulumi.Input<pulumi.Input<inputs.bedrock.DataSourceSeedUrlArgs>[]>;
|
|
8799
|
+
}
|
|
8531
8800
|
/**
|
|
8532
8801
|
* 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.
|
|
8533
8802
|
*/
|
|
@@ -8536,6 +8805,39 @@ export declare namespace bedrock {
|
|
|
8536
8805
|
* 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.
|
|
8537
8806
|
*/
|
|
8538
8807
|
chunkingConfiguration?: pulumi.Input<inputs.bedrock.DataSourceChunkingConfigurationArgs>;
|
|
8808
|
+
customTransformationConfiguration?: pulumi.Input<inputs.bedrock.DataSourceCustomTransformationConfigurationArgs>;
|
|
8809
|
+
parsingConfiguration?: pulumi.Input<inputs.bedrock.DataSourceParsingConfigurationArgs>;
|
|
8810
|
+
}
|
|
8811
|
+
/**
|
|
8812
|
+
* Configuration for the web crawler.
|
|
8813
|
+
*/
|
|
8814
|
+
interface DataSourceWebCrawlerConfigurationArgs {
|
|
8815
|
+
crawlerLimits?: pulumi.Input<inputs.bedrock.DataSourceWebCrawlerLimitsArgs>;
|
|
8816
|
+
exclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8817
|
+
inclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8818
|
+
scope?: pulumi.Input<enums.bedrock.DataSourceWebScopeType>;
|
|
8819
|
+
}
|
|
8820
|
+
/**
|
|
8821
|
+
* Limit settings for the web crawler.
|
|
8822
|
+
*/
|
|
8823
|
+
interface DataSourceWebCrawlerLimitsArgs {
|
|
8824
|
+
/**
|
|
8825
|
+
* Rate of web URLs retrieved per minute.
|
|
8826
|
+
*/
|
|
8827
|
+
rateLimit?: pulumi.Input<number>;
|
|
8828
|
+
}
|
|
8829
|
+
/**
|
|
8830
|
+
* Configures a web data source location.
|
|
8831
|
+
*/
|
|
8832
|
+
interface DataSourceWebDataSourceConfigurationArgs {
|
|
8833
|
+
crawlerConfiguration?: pulumi.Input<inputs.bedrock.DataSourceWebCrawlerConfigurationArgs>;
|
|
8834
|
+
sourceConfiguration: pulumi.Input<inputs.bedrock.DataSourceWebSourceConfigurationArgs>;
|
|
8835
|
+
}
|
|
8836
|
+
/**
|
|
8837
|
+
* A web source configuration.
|
|
8838
|
+
*/
|
|
8839
|
+
interface DataSourceWebSourceConfigurationArgs {
|
|
8840
|
+
urlConfiguration: pulumi.Input<inputs.bedrock.DataSourceUrlConfigurationArgs>;
|
|
8539
8841
|
}
|
|
8540
8842
|
/**
|
|
8541
8843
|
* Details about the routing configuration for a Flow alias.
|
|
@@ -12882,7 +13184,7 @@ export declare namespace cognito {
|
|
|
12882
13184
|
interface UserPoolAddOnsArgs {
|
|
12883
13185
|
advancedSecurityAdditionalFlows?: pulumi.Input<inputs.cognito.UserPoolAdvancedSecurityAdditionalFlowsArgs>;
|
|
12884
13186
|
/**
|
|
12885
|
-
* The operating mode of advanced security features in your user pool.
|
|
13187
|
+
* The operating mode of advanced security features for standard authentication types in your user pool, including username-password and secure remote password (SRP) authentication.
|
|
12886
13188
|
*/
|
|
12887
13189
|
advancedSecurityMode?: pulumi.Input<string>;
|
|
12888
13190
|
}
|
|
@@ -13115,6 +13417,11 @@ export declare namespace cognito {
|
|
|
13115
13417
|
* The minimum length of the password in the policy that you have set. This value can't be less than 6.
|
|
13116
13418
|
*/
|
|
13117
13419
|
minimumLength?: pulumi.Input<number>;
|
|
13420
|
+
/**
|
|
13421
|
+
* 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` .
|
|
13422
|
+
*
|
|
13423
|
+
* 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.
|
|
13424
|
+
*/
|
|
13118
13425
|
passwordHistorySize?: pulumi.Input<number>;
|
|
13119
13426
|
/**
|
|
13120
13427
|
* 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.
|
|
@@ -17876,15 +18183,11 @@ export declare namespace ec2 {
|
|
|
17876
18183
|
}
|
|
17877
18184
|
interface CapacityReservationTagArgs {
|
|
17878
18185
|
/**
|
|
17879
|
-
* The key
|
|
17880
|
-
*
|
|
17881
|
-
* Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with `aws:` .
|
|
18186
|
+
* The tag key.
|
|
17882
18187
|
*/
|
|
17883
18188
|
key: pulumi.Input<string>;
|
|
17884
18189
|
/**
|
|
17885
|
-
* The value
|
|
17886
|
-
*
|
|
17887
|
-
* Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
|
|
18190
|
+
* The tag value.
|
|
17888
18191
|
*/
|
|
17889
18192
|
value: pulumi.Input<string>;
|
|
17890
18193
|
}
|
|
@@ -43260,6 +43563,23 @@ export declare namespace networkmanager {
|
|
|
43260
43563
|
*/
|
|
43261
43564
|
protocol?: pulumi.Input<string>;
|
|
43262
43565
|
}
|
|
43566
|
+
/**
|
|
43567
|
+
* The attachment to move from one network function group to another.
|
|
43568
|
+
*/
|
|
43569
|
+
interface ConnectAttachmentProposedNetworkFunctionGroupChangeArgs {
|
|
43570
|
+
/**
|
|
43571
|
+
* The rule number in the policy document that applies to this change.
|
|
43572
|
+
*/
|
|
43573
|
+
attachmentPolicyRuleNumber?: pulumi.Input<number>;
|
|
43574
|
+
/**
|
|
43575
|
+
* The name of the network function group to change.
|
|
43576
|
+
*/
|
|
43577
|
+
networkFunctionGroupName?: pulumi.Input<string>;
|
|
43578
|
+
/**
|
|
43579
|
+
* The key-value tags that changed for the network function group.
|
|
43580
|
+
*/
|
|
43581
|
+
tags?: pulumi.Input<pulumi.Input<inputs.networkmanager.ConnectAttachmentTagArgs>[]>;
|
|
43582
|
+
}
|
|
43263
43583
|
/**
|
|
43264
43584
|
* The attachment to move from one segment to another.
|
|
43265
43585
|
*/
|
|
@@ -43359,6 +43679,23 @@ export declare namespace networkmanager {
|
|
|
43359
43679
|
*/
|
|
43360
43680
|
longitude?: pulumi.Input<string>;
|
|
43361
43681
|
}
|
|
43682
|
+
/**
|
|
43683
|
+
* The attachment to move from one network function group to another.
|
|
43684
|
+
*/
|
|
43685
|
+
interface SiteToSiteVpnAttachmentProposedNetworkFunctionGroupChangeArgs {
|
|
43686
|
+
/**
|
|
43687
|
+
* The rule number in the policy document that applies to this change.
|
|
43688
|
+
*/
|
|
43689
|
+
attachmentPolicyRuleNumber?: pulumi.Input<number>;
|
|
43690
|
+
/**
|
|
43691
|
+
* The name of the network function group to change.
|
|
43692
|
+
*/
|
|
43693
|
+
networkFunctionGroupName?: pulumi.Input<string>;
|
|
43694
|
+
/**
|
|
43695
|
+
* The key-value tags that changed for the network function group.
|
|
43696
|
+
*/
|
|
43697
|
+
tags?: pulumi.Input<pulumi.Input<inputs.networkmanager.SiteToSiteVpnAttachmentTagArgs>[]>;
|
|
43698
|
+
}
|
|
43362
43699
|
/**
|
|
43363
43700
|
* The attachment to move from one segment to another.
|
|
43364
43701
|
*/
|
|
@@ -43389,6 +43726,23 @@ export declare namespace networkmanager {
|
|
|
43389
43726
|
*/
|
|
43390
43727
|
value: pulumi.Input<string>;
|
|
43391
43728
|
}
|
|
43729
|
+
/**
|
|
43730
|
+
* The attachment to move from one network function group to another.
|
|
43731
|
+
*/
|
|
43732
|
+
interface TransitGatewayRouteTableAttachmentProposedNetworkFunctionGroupChangeArgs {
|
|
43733
|
+
/**
|
|
43734
|
+
* The rule number in the policy document that applies to this change.
|
|
43735
|
+
*/
|
|
43736
|
+
attachmentPolicyRuleNumber?: pulumi.Input<number>;
|
|
43737
|
+
/**
|
|
43738
|
+
* The name of the network function group to change.
|
|
43739
|
+
*/
|
|
43740
|
+
networkFunctionGroupName?: pulumi.Input<string>;
|
|
43741
|
+
/**
|
|
43742
|
+
* The key-value tags that changed for the network function group.
|
|
43743
|
+
*/
|
|
43744
|
+
tags?: pulumi.Input<pulumi.Input<inputs.networkmanager.TransitGatewayRouteTableAttachmentTagArgs>[]>;
|
|
43745
|
+
}
|
|
43392
43746
|
/**
|
|
43393
43747
|
* The attachment to move from one segment to another.
|
|
43394
43748
|
*/
|
|
@@ -43419,6 +43773,23 @@ export declare namespace networkmanager {
|
|
|
43419
43773
|
*/
|
|
43420
43774
|
value: pulumi.Input<string>;
|
|
43421
43775
|
}
|
|
43776
|
+
/**
|
|
43777
|
+
* The attachment to move from one network function group to another.
|
|
43778
|
+
*/
|
|
43779
|
+
interface VpcAttachmentProposedNetworkFunctionGroupChangeArgs {
|
|
43780
|
+
/**
|
|
43781
|
+
* The rule number in the policy document that applies to this change.
|
|
43782
|
+
*/
|
|
43783
|
+
attachmentPolicyRuleNumber?: pulumi.Input<number>;
|
|
43784
|
+
/**
|
|
43785
|
+
* The name of the network function group to change.
|
|
43786
|
+
*/
|
|
43787
|
+
networkFunctionGroupName?: pulumi.Input<string>;
|
|
43788
|
+
/**
|
|
43789
|
+
* The key-value tags that changed for the network function group.
|
|
43790
|
+
*/
|
|
43791
|
+
tags?: pulumi.Input<pulumi.Input<inputs.networkmanager.VpcAttachmentTagArgs>[]>;
|
|
43792
|
+
}
|
|
43422
43793
|
/**
|
|
43423
43794
|
* The attachment to move from one segment to another.
|
|
43424
43795
|
*/
|
|
@@ -72710,25 +73081,6 @@ export declare namespace route53 {
|
|
|
72710
73081
|
*/
|
|
72711
73082
|
cloudWatchLogsLogGroupArn: pulumi.Input<string>;
|
|
72712
73083
|
}
|
|
72713
|
-
/**
|
|
72714
|
-
* A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
|
|
72715
|
-
*/
|
|
72716
|
-
interface HostedZoneTagArgs {
|
|
72717
|
-
/**
|
|
72718
|
-
* The value of ``Key`` depends on the operation that you want to perform:
|
|
72719
|
-
* + *Add a tag to a health check or hosted zone*: ``Key`` is the name that you want to give the new tag.
|
|
72720
|
-
* + *Edit a tag*: ``Key`` is the name of the tag that you want to change the ``Value`` for.
|
|
72721
|
-
* + *Delete a key*: ``Key`` is the name of the tag you want to remove.
|
|
72722
|
-
* + *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.
|
|
72723
|
-
*/
|
|
72724
|
-
key: pulumi.Input<string>;
|
|
72725
|
-
/**
|
|
72726
|
-
* The value of ``Value`` depends on the operation that you want to perform:
|
|
72727
|
-
* + *Add a tag to a health check or hosted zone*: ``Value`` is the value that you want to give the new tag.
|
|
72728
|
-
* + *Edit a tag*: ``Value`` is the new value that you want to assign the tag.
|
|
72729
|
-
*/
|
|
72730
|
-
value: pulumi.Input<string>;
|
|
72731
|
-
}
|
|
72732
73084
|
/**
|
|
72733
73085
|
* *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.
|
|
72734
73086
|
* For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
|
|
@@ -79409,6 +79761,8 @@ export declare namespace securityhub {
|
|
|
79409
79761
|
enabledStandardIdentifiers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
79410
79762
|
/**
|
|
79411
79763
|
* 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.
|
|
79764
|
+
*
|
|
79765
|
+
* This property is required only if `ServiceEnabled` is set to true in your configuration policy.
|
|
79412
79766
|
*/
|
|
79413
79767
|
securityControlsConfiguration?: pulumi.Input<inputs.securityhub.ConfigurationPolicySecurityControlsConfigurationArgs>;
|
|
79414
79768
|
/**
|