@awboost/cfntypes 0.100.143 → 0.100.145
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.
@@ -18737,6 +18737,27 @@ export type BedrockDataSourceAttributes = {
|
|
18737
18737
|
* The time at which the data source was created.
|
18738
18738
|
*/
|
18739
18739
|
CreatedAt: string;
|
18740
|
+
/**
|
18741
|
+
* Specifies a raw data source location to ingest.
|
18742
|
+
*/
|
18743
|
+
DataSourceConfiguration: {
|
18744
|
+
/**
|
18745
|
+
* Configures a web data source location.
|
18746
|
+
*/
|
18747
|
+
WebConfiguration: {
|
18748
|
+
/**
|
18749
|
+
* Configuration for the web crawler.
|
18750
|
+
*/
|
18751
|
+
CrawlerConfiguration: {
|
18752
|
+
/**
|
18753
|
+
* The full user agent header, including UUID and suffix.
|
18754
|
+
* @minLength `61`
|
18755
|
+
* @maxLength `86`
|
18756
|
+
*/
|
18757
|
+
UserAgentHeader: string;
|
18758
|
+
};
|
18759
|
+
};
|
18760
|
+
};
|
18740
18761
|
/**
|
18741
18762
|
* Identifier for a resource.
|
18742
18763
|
* @pattern `^[0-9a-zA-Z]{10}$`
|
@@ -18789,6 +18810,24 @@ export type BedrockDataSourceBedrockFoundationModelConfiguration = {
|
|
18789
18810
|
*/
|
18790
18811
|
ParsingPrompt?: BedrockDataSourceParsingPrompt;
|
18791
18812
|
};
|
18813
|
+
/**
|
18814
|
+
* Type definition for `AWS::Bedrock::DataSource.BedrockFoundationModelContextEnrichmentConfiguration`.
|
18815
|
+
* Bedrock Foundation Model configuration to be used for Context Enrichment.
|
18816
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelcontextenrichmentconfiguration.html}
|
18817
|
+
*/
|
18818
|
+
export type BedrockDataSourceBedrockFoundationModelContextEnrichmentConfiguration = {
|
18819
|
+
/**
|
18820
|
+
* Strategy to be used when using Bedrock Foundation Model for Context Enrichment.
|
18821
|
+
*/
|
18822
|
+
EnrichmentStrategyConfiguration: BedrockDataSourceEnrichmentStrategyConfiguration;
|
18823
|
+
/**
|
18824
|
+
* The model's ARN.
|
18825
|
+
* @minLength `1`
|
18826
|
+
* @maxLength `2048`
|
18827
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})|(arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):(inference-profile|application-inference-profile)/[a-zA-Z0-9-:.]+)$`
|
18828
|
+
*/
|
18829
|
+
ModelArn: string;
|
18830
|
+
};
|
18792
18831
|
/**
|
18793
18832
|
* Type definition for `AWS::Bedrock::DataSource.ChunkingConfiguration`.
|
18794
18833
|
* 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.
|
@@ -18871,6 +18910,27 @@ export type BedrockDataSourceConfluenceSourceConfiguration = {
|
|
18871
18910
|
*/
|
18872
18911
|
HostUrl: string;
|
18873
18912
|
};
|
18913
|
+
/**
|
18914
|
+
* Type definition for `AWS::Bedrock::DataSource.ContextEnrichmentConfiguration`.
|
18915
|
+
* Additional Enrichment Configuration for example when using GraphRag.
|
18916
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-contextenrichmentconfiguration.html}
|
18917
|
+
*/
|
18918
|
+
export type BedrockDataSourceContextEnrichmentConfiguration = {
|
18919
|
+
/**
|
18920
|
+
* Bedrock Foundation Model configuration to be used for Context Enrichment.
|
18921
|
+
*/
|
18922
|
+
BedrockFoundationModelConfiguration?: BedrockDataSourceBedrockFoundationModelContextEnrichmentConfiguration;
|
18923
|
+
/**
|
18924
|
+
* Enrichment type to be used for the vector database.
|
18925
|
+
*/
|
18926
|
+
Type: BedrockDataSourceContextEnrichmentType;
|
18927
|
+
};
|
18928
|
+
/**
|
18929
|
+
* Type definition for `AWS::Bedrock::DataSource.ContextEnrichmentType`.
|
18930
|
+
* Enrichment type to be used for the vector database.
|
18931
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-contextenrichmenttype.html}
|
18932
|
+
*/
|
18933
|
+
export type BedrockDataSourceContextEnrichmentType = "BEDROCK_FOUNDATION_MODEL";
|
18874
18934
|
/**
|
18875
18935
|
* Type definition for `AWS::Bedrock::DataSource.CrawlFilterConfiguration`.
|
18876
18936
|
* 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.
|
@@ -18952,6 +19012,23 @@ export type BedrockDataSourceDataSourceStatus = "AVAILABLE" | "DELETING" | "DELE
|
|
18952
19012
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourcetype.html}
|
18953
19013
|
*/
|
18954
19014
|
export type BedrockDataSourceDataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM" | "REDSHIFT_METADATA";
|
19015
|
+
/**
|
19016
|
+
* Type definition for `AWS::Bedrock::DataSource.EnrichmentStrategyConfiguration`.
|
19017
|
+
* Strategy to be used when using Bedrock Foundation Model for Context Enrichment.
|
19018
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-enrichmentstrategyconfiguration.html}
|
19019
|
+
*/
|
19020
|
+
export type BedrockDataSourceEnrichmentStrategyConfiguration = {
|
19021
|
+
/**
|
19022
|
+
* Enrichment Strategy method.
|
19023
|
+
*/
|
19024
|
+
Method: BedrockDataSourceEnrichmentStrategyMethod;
|
19025
|
+
};
|
19026
|
+
/**
|
19027
|
+
* Type definition for `AWS::Bedrock::DataSource.EnrichmentStrategyMethod`.
|
19028
|
+
* Enrichment Strategy method.
|
19029
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-enrichmentstrategymethod.html}
|
19030
|
+
*/
|
19031
|
+
export type BedrockDataSourceEnrichmentStrategyMethod = "CHUNK_ENTITY_EXTRACTION";
|
18955
19032
|
/**
|
18956
19033
|
* Type definition for `AWS::Bedrock::DataSource.FixedSizeChunkingConfiguration`.
|
18957
19034
|
* Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
@@ -19269,7 +19346,7 @@ export type BedrockDataSourceSharePointSourceConfiguration = {
|
|
19269
19346
|
/**
|
19270
19347
|
* The supported authentication type to authenticate and connect to your SharePoint site/sites.
|
19271
19348
|
*/
|
19272
|
-
AuthType: "OAUTH2_CLIENT_CREDENTIALS";
|
19349
|
+
AuthType: "OAUTH2_CLIENT_CREDENTIALS" | "OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS";
|
19273
19350
|
/**
|
19274
19351
|
* 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.
|
19275
19352
|
* @pattern `^arn:aws(|-cn|-us-gov):secretsmanager:[a-z0-9-]{1,20}:([0-9]{12}|):secret:[a-zA-Z0-9!/_+=.@-]{1,512}$`
|
@@ -19360,6 +19437,10 @@ export type BedrockDataSourceVectorIngestionConfiguration = {
|
|
19360
19437
|
* 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.
|
19361
19438
|
*/
|
19362
19439
|
ChunkingConfiguration?: BedrockDataSourceChunkingConfiguration;
|
19440
|
+
/**
|
19441
|
+
* Additional Enrichment Configuration for example when using GraphRag.
|
19442
|
+
*/
|
19443
|
+
ContextEnrichmentConfiguration?: BedrockDataSourceContextEnrichmentConfiguration;
|
19363
19444
|
/**
|
19364
19445
|
* Settings for customizing steps in the data source content ingestion pipeline.
|
19365
19446
|
*/
|
@@ -19395,6 +19476,12 @@ export type BedrockDataSourceWebCrawlerConfiguration = {
|
|
19395
19476
|
* The scope that a web crawl job will be restricted to.
|
19396
19477
|
*/
|
19397
19478
|
Scope?: BedrockDataSourceWebScopeType;
|
19479
|
+
/**
|
19480
|
+
* The suffix that will be included in the user agent header.
|
19481
|
+
* @minLength `15`
|
19482
|
+
* @maxLength `40`
|
19483
|
+
*/
|
19484
|
+
UserAgent?: string;
|
19398
19485
|
};
|
19399
19486
|
/**
|
19400
19487
|
* Type definition for `AWS::Bedrock::DataSource.WebCrawlerLimits`.
|
@@ -19402,6 +19489,11 @@ export type BedrockDataSourceWebCrawlerConfiguration = {
|
|
19402
19489
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webcrawlerlimits.html}
|
19403
19490
|
*/
|
19404
19491
|
export type BedrockDataSourceWebCrawlerLimits = {
|
19492
|
+
/**
|
19493
|
+
* Maximum number of pages the crawler can crawl.
|
19494
|
+
* @min `1`
|
19495
|
+
*/
|
19496
|
+
MaxPages?: number;
|
19405
19497
|
/**
|
19406
19498
|
* Rate of web URLs retrieved per minute.
|
19407
19499
|
* @min `1`
|
@@ -21618,7 +21710,7 @@ export type BedrockKnowledgeBaseKnowledgeBaseStatus = "CREATING" | "ACTIVE" | "D
|
|
21618
21710
|
* The storage type of a knowledge base.
|
21619
21711
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasestoragetype.html}
|
21620
21712
|
*/
|
21621
|
-
export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS";
|
21713
|
+
export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS";
|
21622
21714
|
/**
|
21623
21715
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseType`.
|
21624
21716
|
* The type of a knowledge base.
|
@@ -21696,6 +21788,43 @@ export type BedrockKnowledgeBaseMongoDbAtlasFieldMapping = {
|
|
21696
21788
|
*/
|
21697
21789
|
VectorField: string;
|
21698
21790
|
};
|
21791
|
+
/**
|
21792
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.NeptuneAnalyticsConfiguration`.
|
21793
|
+
* Contains the configurations to use Neptune Analytics as Vector Store.
|
21794
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-neptuneanalyticsconfiguration.html}
|
21795
|
+
*/
|
21796
|
+
export type BedrockKnowledgeBaseNeptuneAnalyticsConfiguration = {
|
21797
|
+
/**
|
21798
|
+
* A mapping of Bedrock Knowledge Base fields to Neptune Analytics fields.
|
21799
|
+
*/
|
21800
|
+
FieldMapping: BedrockKnowledgeBaseNeptuneAnalyticsFieldMapping;
|
21801
|
+
/**
|
21802
|
+
* ARN for Neptune Analytics graph database.
|
21803
|
+
* @minLength `1`
|
21804
|
+
* @maxLength `255`
|
21805
|
+
* @pattern `^arn:aws(|-cn|-us-gov):neptune-graph:[a-zA-Z0-9-]*:[0-9]{12}:graph\/g-[a-zA-Z0-9]{10}$`
|
21806
|
+
*/
|
21807
|
+
GraphArn: string;
|
21808
|
+
};
|
21809
|
+
/**
|
21810
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.NeptuneAnalyticsFieldMapping`.
|
21811
|
+
* A mapping of Bedrock Knowledge Base fields to Neptune Analytics fields.
|
21812
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-neptuneanalyticsfieldmapping.html}
|
21813
|
+
*/
|
21814
|
+
export type BedrockKnowledgeBaseNeptuneAnalyticsFieldMapping = {
|
21815
|
+
/**
|
21816
|
+
* The name of the field in which Amazon Bedrock stores metadata about the vector store.
|
21817
|
+
* @maxLength `2048`
|
21818
|
+
* @pattern `^.*$`
|
21819
|
+
*/
|
21820
|
+
MetadataField: string;
|
21821
|
+
/**
|
21822
|
+
* 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.
|
21823
|
+
* @maxLength `2048`
|
21824
|
+
* @pattern `^.*$`
|
21825
|
+
*/
|
21826
|
+
TextField: string;
|
21827
|
+
};
|
21699
21828
|
/**
|
21700
21829
|
* Type definition for `AWS::Bedrock::KnowledgeBase.OpenSearchServerlessConfiguration`.
|
21701
21830
|
* Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
|
@@ -22161,6 +22290,10 @@ export type BedrockKnowledgeBaseStorageConfiguration = {
|
|
22161
22290
|
* Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
|
22162
22291
|
*/
|
22163
22292
|
MongoDbAtlasConfiguration?: BedrockKnowledgeBaseMongoDbAtlasConfiguration;
|
22293
|
+
/**
|
22294
|
+
* Contains the configurations to use Neptune Analytics as Vector Store.
|
22295
|
+
*/
|
22296
|
+
NeptuneAnalyticsConfiguration?: BedrockKnowledgeBaseNeptuneAnalyticsConfiguration;
|
22164
22297
|
/**
|
22165
22298
|
* Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
|
22166
22299
|
*/
|
@@ -44252,6 +44385,656 @@ export type DataSyncTaskTaskSchedule = {
|
|
44252
44385
|
*/
|
44253
44386
|
Status?: "ENABLED" | "DISABLED";
|
44254
44387
|
};
|
44388
|
+
/**
|
44389
|
+
* Resource type definition for `AWS::DataZone::Connection`.
|
44390
|
+
* Connections enables users to connect their DataZone resources (domains, projects, and environments) to external resources/services (data, compute, etc)
|
44391
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-connection.html}
|
44392
|
+
*/
|
44393
|
+
export type DataZoneConnectionProps = {
|
44394
|
+
/**
|
44395
|
+
* AWS Location of project
|
44396
|
+
*/
|
44397
|
+
AwsLocation?: DataZoneConnectionAwsLocation;
|
44398
|
+
/**
|
44399
|
+
* The description of the connection.
|
44400
|
+
* @maxLength `128`
|
44401
|
+
* @pattern `^[\S\s]*$`
|
44402
|
+
*/
|
44403
|
+
Description?: string;
|
44404
|
+
/**
|
44405
|
+
* The identifier of the domain in which the connection is created.
|
44406
|
+
* @pattern `^dzd[_][a-zA-Z0-9_-]{1,36}$`
|
44407
|
+
*/
|
44408
|
+
DomainIdentifier: string;
|
44409
|
+
/**
|
44410
|
+
* The identifier of the environment in which the connection is created.
|
44411
|
+
*/
|
44412
|
+
EnvironmentIdentifier: string;
|
44413
|
+
/**
|
44414
|
+
* The name of the connection.
|
44415
|
+
* @maxLength `64`
|
44416
|
+
* @pattern `^[\w][\w\.\-\_]*$`
|
44417
|
+
*/
|
44418
|
+
Name: string;
|
44419
|
+
Props?: DataZoneConnectionConnectionPropertiesInput;
|
44420
|
+
};
|
44421
|
+
/**
|
44422
|
+
* Attribute type definition for `AWS::DataZone::Connection`.
|
44423
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-connection.html#aws-resource-datazone-connection-return-values}
|
44424
|
+
*/
|
44425
|
+
export type DataZoneConnectionAttributes = {
|
44426
|
+
/**
|
44427
|
+
* The ID of the connection.
|
44428
|
+
* @maxLength `128`
|
44429
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
44430
|
+
*/
|
44431
|
+
ConnectionId: string;
|
44432
|
+
/**
|
44433
|
+
* The ID of the domain in which the connection is created.
|
44434
|
+
* @pattern `^dzd[_][a-zA-Z0-9_-]{1,36}$`
|
44435
|
+
*/
|
44436
|
+
DomainId: string;
|
44437
|
+
/**
|
44438
|
+
* The ID of the domain unit in which the connection is created.
|
44439
|
+
* @minLength `1`
|
44440
|
+
* @maxLength `256`
|
44441
|
+
* @pattern `^[a-z0-9_\-]+$`
|
44442
|
+
*/
|
44443
|
+
DomainUnitId: string;
|
44444
|
+
/**
|
44445
|
+
* The ID of the environment in which the connection is created.
|
44446
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
44447
|
+
*/
|
44448
|
+
EnvironmentId: string;
|
44449
|
+
/**
|
44450
|
+
* The role of the user in the environment.
|
44451
|
+
*/
|
44452
|
+
EnvironmentUserRole: string;
|
44453
|
+
/**
|
44454
|
+
* The ID of the project in which the connection is created.
|
44455
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
44456
|
+
*/
|
44457
|
+
ProjectId: string;
|
44458
|
+
/**
|
44459
|
+
* Connection Type
|
44460
|
+
*/
|
44461
|
+
Type: string;
|
44462
|
+
};
|
44463
|
+
/**
|
44464
|
+
* Type definition for `AWS::DataZone::Connection.AthenaPropertiesInput`.
|
44465
|
+
* Athena Properties Input
|
44466
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-athenapropertiesinput.html}
|
44467
|
+
*/
|
44468
|
+
export type DataZoneConnectionAthenaPropertiesInput = {
|
44469
|
+
/**
|
44470
|
+
* @maxLength `128`
|
44471
|
+
* @pattern `^[a-zA-Z0-9._-]+$`
|
44472
|
+
*/
|
44473
|
+
WorkgroupName: string;
|
44474
|
+
};
|
44475
|
+
/**
|
44476
|
+
* Type definition for `AWS::DataZone::Connection.AuthenticationConfigurationInput`.
|
44477
|
+
* Authentication Configuration Input
|
44478
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-authenticationconfigurationinput.html}
|
44479
|
+
*/
|
44480
|
+
export type DataZoneConnectionAuthenticationConfigurationInput = {
|
44481
|
+
/**
|
44482
|
+
* Authentication Type
|
44483
|
+
*/
|
44484
|
+
AuthenticationType?: DataZoneConnectionAuthenticationType;
|
44485
|
+
/**
|
44486
|
+
* Basic Authentication Credentials
|
44487
|
+
*/
|
44488
|
+
BasicAuthenticationCredentials?: DataZoneConnectionBasicAuthenticationCredentials;
|
44489
|
+
/**
|
44490
|
+
* Credential Map
|
44491
|
+
*/
|
44492
|
+
CustomAuthenticationCredentials?: DataZoneConnectionCredentialMap;
|
44493
|
+
/**
|
44494
|
+
* @pattern `^$|arn:aws[a-z0-9-]*:kms:.*$`
|
44495
|
+
*/
|
44496
|
+
KmsKeyArn?: string;
|
44497
|
+
/**
|
44498
|
+
* OAuth2 Properties
|
44499
|
+
*/
|
44500
|
+
OAuth2Properties?: DataZoneConnectionOAuth2Properties;
|
44501
|
+
/**
|
44502
|
+
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:secretsmanager:.*$`
|
44503
|
+
*/
|
44504
|
+
SecretArn?: string;
|
44505
|
+
};
|
44506
|
+
/**
|
44507
|
+
* Type definition for `AWS::DataZone::Connection.AuthenticationType`.
|
44508
|
+
* Authentication Type
|
44509
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-authenticationtype.html}
|
44510
|
+
*/
|
44511
|
+
export type DataZoneConnectionAuthenticationType = "BASIC" | "OAUTH2" | "CUSTOM";
|
44512
|
+
/**
|
44513
|
+
* Type definition for `AWS::DataZone::Connection.AuthorizationCodeProperties`.
|
44514
|
+
* Authorization Code Properties
|
44515
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-authorizationcodeproperties.html}
|
44516
|
+
*/
|
44517
|
+
export type DataZoneConnectionAuthorizationCodeProperties = {
|
44518
|
+
/**
|
44519
|
+
* @minLength `1`
|
44520
|
+
* @maxLength `4096`
|
44521
|
+
*/
|
44522
|
+
AuthorizationCode?: string;
|
44523
|
+
/**
|
44524
|
+
* @maxLength `512`
|
44525
|
+
*/
|
44526
|
+
RedirectUri?: string;
|
44527
|
+
};
|
44528
|
+
/**
|
44529
|
+
* Type definition for `AWS::DataZone::Connection.AwsLocation`.
|
44530
|
+
* AWS Location of project
|
44531
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-awslocation.html}
|
44532
|
+
*/
|
44533
|
+
export type DataZoneConnectionAwsLocation = {
|
44534
|
+
/**
|
44535
|
+
* @maxLength `2048`
|
44536
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
44537
|
+
*/
|
44538
|
+
AccessRole?: string;
|
44539
|
+
/**
|
44540
|
+
* @pattern `^\d{12}$`
|
44541
|
+
*/
|
44542
|
+
AwsAccountId?: string;
|
44543
|
+
/**
|
44544
|
+
* @pattern `^[a-z]{2}-[a-z]{4,10}-\d$`
|
44545
|
+
*/
|
44546
|
+
AwsRegion?: string;
|
44547
|
+
/**
|
44548
|
+
* @maxLength `128`
|
44549
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
44550
|
+
*/
|
44551
|
+
IamConnectionId?: string;
|
44552
|
+
};
|
44553
|
+
/**
|
44554
|
+
* Type definition for `AWS::DataZone::Connection.BasicAuthenticationCredentials`.
|
44555
|
+
* Basic Authentication Credentials
|
44556
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-basicauthenticationcredentials.html}
|
44557
|
+
*/
|
44558
|
+
export type DataZoneConnectionBasicAuthenticationCredentials = {
|
44559
|
+
/**
|
44560
|
+
* @maxLength `512`
|
44561
|
+
* @pattern `^.*$`
|
44562
|
+
*/
|
44563
|
+
Password?: string;
|
44564
|
+
/**
|
44565
|
+
* @maxLength `512`
|
44566
|
+
* @pattern `^\S+$`
|
44567
|
+
*/
|
44568
|
+
UserName?: string;
|
44569
|
+
};
|
44570
|
+
/**
|
44571
|
+
* Type definition for `AWS::DataZone::Connection.ConnectionProperties`.
|
44572
|
+
* Connection Properties
|
44573
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-connectionproperties.html}
|
44574
|
+
*/
|
44575
|
+
export type DataZoneConnectionConnectionProperties = Record<string, string>;
|
44576
|
+
/**
|
44577
|
+
* Type definition for `AWS::DataZone::Connection.ConnectionPropertiesInput`.
|
44578
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-connectionpropertiesinput.html}
|
44579
|
+
*/
|
44580
|
+
export type DataZoneConnectionConnectionPropertiesInput = {
|
44581
|
+
/**
|
44582
|
+
* Athena Properties Input
|
44583
|
+
*/
|
44584
|
+
AthenaProperties: DataZoneConnectionAthenaPropertiesInput;
|
44585
|
+
} | {
|
44586
|
+
/**
|
44587
|
+
* Glue Properties Input
|
44588
|
+
*/
|
44589
|
+
GlueProperties: DataZoneConnectionGluePropertiesInput;
|
44590
|
+
} | {
|
44591
|
+
/**
|
44592
|
+
* HyperPod Properties Input
|
44593
|
+
*/
|
44594
|
+
HyperPodProperties: DataZoneConnectionHyperPodPropertiesInput;
|
44595
|
+
} | {
|
44596
|
+
/**
|
44597
|
+
* IAM Properties Input
|
44598
|
+
*/
|
44599
|
+
IamProperties: DataZoneConnectionIamPropertiesInput;
|
44600
|
+
} | {
|
44601
|
+
/**
|
44602
|
+
* Redshift Properties Input
|
44603
|
+
*/
|
44604
|
+
RedshiftProperties: DataZoneConnectionRedshiftPropertiesInput;
|
44605
|
+
} | {
|
44606
|
+
/**
|
44607
|
+
* Spark EMR Properties Input.
|
44608
|
+
*/
|
44609
|
+
SparkEmrProperties: DataZoneConnectionSparkEmrPropertiesInput;
|
44610
|
+
} | {
|
44611
|
+
/**
|
44612
|
+
* Spark Glue Properties Input.
|
44613
|
+
*/
|
44614
|
+
SparkGlueProperties: DataZoneConnectionSparkGluePropertiesInput;
|
44615
|
+
};
|
44616
|
+
/**
|
44617
|
+
* Type definition for `AWS::DataZone::Connection.CredentialMap`.
|
44618
|
+
* Credential Map
|
44619
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-credentialmap.html}
|
44620
|
+
*/
|
44621
|
+
export type DataZoneConnectionCredentialMap = Record<string, string>;
|
44622
|
+
/**
|
44623
|
+
* Type definition for `AWS::DataZone::Connection.GlueConnectionInput`.
|
44624
|
+
* Glue Connection Input
|
44625
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-glueconnectioninput.html}
|
44626
|
+
*/
|
44627
|
+
export type DataZoneConnectionGlueConnectionInput = {
|
44628
|
+
/**
|
44629
|
+
* Property Map
|
44630
|
+
*/
|
44631
|
+
AthenaProperties?: DataZoneConnectionPropertyMap;
|
44632
|
+
/**
|
44633
|
+
* Authentication Configuration Input
|
44634
|
+
*/
|
44635
|
+
AuthenticationConfiguration?: DataZoneConnectionAuthenticationConfigurationInput;
|
44636
|
+
/**
|
44637
|
+
* Connection Properties
|
44638
|
+
*/
|
44639
|
+
ConnectionProperties?: DataZoneConnectionConnectionProperties;
|
44640
|
+
/**
|
44641
|
+
* Glue Connection Type
|
44642
|
+
*/
|
44643
|
+
ConnectionType?: string;
|
44644
|
+
/**
|
44645
|
+
* @maxLength `2048`
|
44646
|
+
* @pattern `^[\u0020-\uD7FF\uE000-\uFFFF\r\n\t]*$`
|
44647
|
+
*/
|
44648
|
+
Description?: string;
|
44649
|
+
/**
|
44650
|
+
* @minLength `0`
|
44651
|
+
* @maxLength `10`
|
44652
|
+
*/
|
44653
|
+
MatchCriteria?: string;
|
44654
|
+
/**
|
44655
|
+
* @minLength `1`
|
44656
|
+
* @maxLength `255`
|
44657
|
+
* @pattern `^[\u0020-\uD7FF\uE000-\uFFFF\t]*$`
|
44658
|
+
*/
|
44659
|
+
Name?: string;
|
44660
|
+
/**
|
44661
|
+
* Physical Connection Requirements
|
44662
|
+
*/
|
44663
|
+
PhysicalConnectionRequirements?: DataZoneConnectionPhysicalConnectionRequirements;
|
44664
|
+
/**
|
44665
|
+
* Property Map
|
44666
|
+
*/
|
44667
|
+
PythonProperties?: DataZoneConnectionPropertyMap;
|
44668
|
+
/**
|
44669
|
+
* Property Map
|
44670
|
+
*/
|
44671
|
+
SparkProperties?: DataZoneConnectionPropertyMap;
|
44672
|
+
ValidateCredentials?: boolean;
|
44673
|
+
/**
|
44674
|
+
* @minLength `1`
|
44675
|
+
* @maxLength `50`
|
44676
|
+
*/
|
44677
|
+
ValidateForComputeEnvironments?: string[];
|
44678
|
+
};
|
44679
|
+
/**
|
44680
|
+
* Type definition for `AWS::DataZone::Connection.GlueOAuth2Credentials`.
|
44681
|
+
* Glue OAuth2 Credentials
|
44682
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-glueoauth2credentials.html}
|
44683
|
+
*/
|
44684
|
+
export type DataZoneConnectionGlueOAuth2Credentials = {
|
44685
|
+
/**
|
44686
|
+
* @maxLength `4096`
|
44687
|
+
* @pattern `^[\x20-\x7E]*$`
|
44688
|
+
*/
|
44689
|
+
AccessToken?: string;
|
44690
|
+
/**
|
44691
|
+
* @maxLength `8000`
|
44692
|
+
* @pattern `^([a-zA-Z0-9_=]+)\.([a-zA-Z0-9_=]+)\.([a-zA-Z0-9_\-\+\/=]*)$`
|
44693
|
+
*/
|
44694
|
+
JwtToken?: string;
|
44695
|
+
/**
|
44696
|
+
* @maxLength `4096`
|
44697
|
+
* @pattern `^[\x20-\x7E]*$`
|
44698
|
+
*/
|
44699
|
+
RefreshToken?: string;
|
44700
|
+
/**
|
44701
|
+
* @maxLength `512`
|
44702
|
+
* @pattern `^[\x20-\x7E]*$`
|
44703
|
+
*/
|
44704
|
+
UserManagedClientApplicationClientSecret?: string;
|
44705
|
+
};
|
44706
|
+
/**
|
44707
|
+
* Type definition for `AWS::DataZone::Connection.GluePropertiesInput`.
|
44708
|
+
* Glue Properties Input
|
44709
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-gluepropertiesinput.html}
|
44710
|
+
*/
|
44711
|
+
export type DataZoneConnectionGluePropertiesInput = {
|
44712
|
+
/**
|
44713
|
+
* Glue Connection Input
|
44714
|
+
*/
|
44715
|
+
GlueConnectionInput?: DataZoneConnectionGlueConnectionInput;
|
44716
|
+
};
|
44717
|
+
/**
|
44718
|
+
* Type definition for `AWS::DataZone::Connection.HyperPodPropertiesInput`.
|
44719
|
+
* HyperPod Properties Input
|
44720
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-hyperpodpropertiesinput.html}
|
44721
|
+
*/
|
44722
|
+
export type DataZoneConnectionHyperPodPropertiesInput = {
|
44723
|
+
/**
|
44724
|
+
* @minLength `1`
|
44725
|
+
* @maxLength `63`
|
44726
|
+
* @pattern `^[a-zA-Z0-9](-*[a-zA-Z0-9])*$`
|
44727
|
+
*/
|
44728
|
+
ClusterName: string;
|
44729
|
+
};
|
44730
|
+
/**
|
44731
|
+
* Type definition for `AWS::DataZone::Connection.IamPropertiesInput`.
|
44732
|
+
* IAM Properties Input
|
44733
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-iampropertiesinput.html}
|
44734
|
+
*/
|
44735
|
+
export type DataZoneConnectionIamPropertiesInput = {
|
44736
|
+
GlueLineageSyncEnabled?: boolean;
|
44737
|
+
};
|
44738
|
+
/**
|
44739
|
+
* Type definition for `AWS::DataZone::Connection.LineageSyncSchedule`.
|
44740
|
+
* Lineage Sync Schedule
|
44741
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-lineagesyncschedule.html}
|
44742
|
+
*/
|
44743
|
+
export type DataZoneConnectionLineageSyncSchedule = {
|
44744
|
+
/**
|
44745
|
+
* @pattern `^cron\((\b[0-5]?[0-9]\b) (\b2[0-3]\b|\b[0-1]?[0-9]\b) ([-?*,/\dLW]){1,83} ([-*,/\d]|[a-zA-Z]{3}){1,23} ([-?#*,/\dL]|[a-zA-Z]{3}){1,13} ([^\)]+)\)$`
|
44746
|
+
*/
|
44747
|
+
Schedule?: string;
|
44748
|
+
};
|
44749
|
+
/**
|
44750
|
+
* Type definition for `AWS::DataZone::Connection.OAuth2ClientApplication`.
|
44751
|
+
* OAuth2 Client Application
|
44752
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-oauth2clientapplication.html}
|
44753
|
+
*/
|
44754
|
+
export type DataZoneConnectionOAuth2ClientApplication = {
|
44755
|
+
/**
|
44756
|
+
* @maxLength `2048`
|
44757
|
+
* @pattern `^\S+$`
|
44758
|
+
*/
|
44759
|
+
AWSManagedClientApplicationReference?: string;
|
44760
|
+
/**
|
44761
|
+
* @maxLength `2048`
|
44762
|
+
* @pattern `^\S+$`
|
44763
|
+
*/
|
44764
|
+
UserManagedClientApplicationClientId?: string;
|
44765
|
+
};
|
44766
|
+
/**
|
44767
|
+
* Type definition for `AWS::DataZone::Connection.OAuth2GrantType`.
|
44768
|
+
* OAuth2 Grant Type
|
44769
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-oauth2granttype.html}
|
44770
|
+
*/
|
44771
|
+
export type DataZoneConnectionOAuth2GrantType = "AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER";
|
44772
|
+
/**
|
44773
|
+
* Type definition for `AWS::DataZone::Connection.OAuth2Properties`.
|
44774
|
+
* OAuth2 Properties
|
44775
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-oauth2properties.html}
|
44776
|
+
*/
|
44777
|
+
export type DataZoneConnectionOAuth2Properties = {
|
44778
|
+
/**
|
44779
|
+
* Authorization Code Properties
|
44780
|
+
*/
|
44781
|
+
AuthorizationCodeProperties?: DataZoneConnectionAuthorizationCodeProperties;
|
44782
|
+
/**
|
44783
|
+
* OAuth2 Client Application
|
44784
|
+
*/
|
44785
|
+
OAuth2ClientApplication?: DataZoneConnectionOAuth2ClientApplication;
|
44786
|
+
/**
|
44787
|
+
* Glue OAuth2 Credentials
|
44788
|
+
*/
|
44789
|
+
OAuth2Credentials?: DataZoneConnectionGlueOAuth2Credentials;
|
44790
|
+
/**
|
44791
|
+
* OAuth2 Grant Type
|
44792
|
+
*/
|
44793
|
+
OAuth2GrantType?: DataZoneConnectionOAuth2GrantType;
|
44794
|
+
/**
|
44795
|
+
* @maxLength `256`
|
44796
|
+
* @pattern `^(https?)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]$`
|
44797
|
+
*/
|
44798
|
+
TokenUrl?: string;
|
44799
|
+
/**
|
44800
|
+
* The token URL parameters.
|
44801
|
+
*/
|
44802
|
+
TokenUrlParametersMap?: DataZoneConnectionTokenUrlParametersMap;
|
44803
|
+
};
|
44804
|
+
/**
|
44805
|
+
* Type definition for `AWS::DataZone::Connection.PhysicalConnectionRequirements`.
|
44806
|
+
* Physical Connection Requirements
|
44807
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-physicalconnectionrequirements.html}
|
44808
|
+
*/
|
44809
|
+
export type DataZoneConnectionPhysicalConnectionRequirements = {
|
44810
|
+
/**
|
44811
|
+
* @minLength `1`
|
44812
|
+
* @maxLength `255`
|
44813
|
+
*/
|
44814
|
+
AvailabilityZone?: string;
|
44815
|
+
/**
|
44816
|
+
* @minLength `0`
|
44817
|
+
* @maxLength `50`
|
44818
|
+
*/
|
44819
|
+
SecurityGroupIdList?: string[];
|
44820
|
+
/**
|
44821
|
+
* @maxLength `32`
|
44822
|
+
* @pattern `^subnet-[a-z0-9]+$`
|
44823
|
+
*/
|
44824
|
+
SubnetId?: string;
|
44825
|
+
/**
|
44826
|
+
* @minLength `1`
|
44827
|
+
* @maxLength `50`
|
44828
|
+
*/
|
44829
|
+
SubnetIdList?: string[];
|
44830
|
+
};
|
44831
|
+
/**
|
44832
|
+
* Type definition for `AWS::DataZone::Connection.PropertyMap`.
|
44833
|
+
* Property Map
|
44834
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-propertymap.html}
|
44835
|
+
*/
|
44836
|
+
export type DataZoneConnectionPropertyMap = Record<string, string>;
|
44837
|
+
/**
|
44838
|
+
* Type definition for `AWS::DataZone::Connection.RedshiftCredentials`.
|
44839
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftcredentials.html}
|
44840
|
+
*/
|
44841
|
+
export type DataZoneConnectionRedshiftCredentials = {
|
44842
|
+
/**
|
44843
|
+
* @maxLength `2048`
|
44844
|
+
* @pattern `^arn:aws[^:]*:secretsmanager:[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]:\d{12}:secret:.*$`
|
44845
|
+
*/
|
44846
|
+
SecretArn: string;
|
44847
|
+
} | {
|
44848
|
+
/**
|
44849
|
+
* The username and password to be used for authentication.
|
44850
|
+
*/
|
44851
|
+
UsernamePassword: DataZoneConnectionUsernamePassword;
|
44852
|
+
};
|
44853
|
+
/**
|
44854
|
+
* Type definition for `AWS::DataZone::Connection.RedshiftLineageSyncConfigurationInput`.
|
44855
|
+
* Redshift Lineage Sync Configuration Input
|
44856
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftlineagesyncconfigurationinput.html}
|
44857
|
+
*/
|
44858
|
+
export type DataZoneConnectionRedshiftLineageSyncConfigurationInput = {
|
44859
|
+
Enabled?: boolean;
|
44860
|
+
/**
|
44861
|
+
* Lineage Sync Schedule
|
44862
|
+
*/
|
44863
|
+
Schedule?: DataZoneConnectionLineageSyncSchedule;
|
44864
|
+
};
|
44865
|
+
/**
|
44866
|
+
* Type definition for `AWS::DataZone::Connection.RedshiftPropertiesInput`.
|
44867
|
+
* Redshift Properties Input
|
44868
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html}
|
44869
|
+
*/
|
44870
|
+
export type DataZoneConnectionRedshiftPropertiesInput = {
|
44871
|
+
Credentials?: DataZoneConnectionRedshiftCredentials;
|
44872
|
+
/**
|
44873
|
+
* @minLength `1`
|
44874
|
+
* @maxLength `64`
|
44875
|
+
* @pattern `^[a-z0-9]+$`
|
44876
|
+
*/
|
44877
|
+
DatabaseName?: string;
|
44878
|
+
/**
|
44879
|
+
* @maxLength `256`
|
44880
|
+
* @pattern `^[\S]*$`
|
44881
|
+
*/
|
44882
|
+
Host?: string;
|
44883
|
+
/**
|
44884
|
+
* Redshift Lineage Sync Configuration Input
|
44885
|
+
*/
|
44886
|
+
LineageSync?: DataZoneConnectionRedshiftLineageSyncConfigurationInput;
|
44887
|
+
/**
|
44888
|
+
* @min `0`
|
44889
|
+
* @max `65535`
|
44890
|
+
*/
|
44891
|
+
Port?: number;
|
44892
|
+
Storage?: DataZoneConnectionRedshiftStorageProperties;
|
44893
|
+
};
|
44894
|
+
/**
|
44895
|
+
* Type definition for `AWS::DataZone::Connection.RedshiftStorageProperties`.
|
44896
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftstorageproperties.html}
|
44897
|
+
*/
|
44898
|
+
export type DataZoneConnectionRedshiftStorageProperties = {
|
44899
|
+
/**
|
44900
|
+
* @minLength `0`
|
44901
|
+
* @maxLength `63`
|
44902
|
+
* @pattern `^[a-z0-9-]+$`
|
44903
|
+
*/
|
44904
|
+
ClusterName: string;
|
44905
|
+
} | {
|
44906
|
+
/**
|
44907
|
+
* @minLength `3`
|
44908
|
+
* @maxLength `64`
|
44909
|
+
* @pattern `^[a-z0-9-]+$`
|
44910
|
+
*/
|
44911
|
+
WorkgroupName: string;
|
44912
|
+
};
|
44913
|
+
/**
|
44914
|
+
* Type definition for `AWS::DataZone::Connection.SparkEmrPropertiesInput`.
|
44915
|
+
* Spark EMR Properties Input.
|
44916
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-sparkemrpropertiesinput.html}
|
44917
|
+
*/
|
44918
|
+
export type DataZoneConnectionSparkEmrPropertiesInput = {
|
44919
|
+
/**
|
44920
|
+
* @maxLength `2048`
|
44921
|
+
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless):.*`
|
44922
|
+
*/
|
44923
|
+
ComputeArn?: string;
|
44924
|
+
/**
|
44925
|
+
* @maxLength `2048`
|
44926
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
44927
|
+
*/
|
44928
|
+
InstanceProfileArn?: string;
|
44929
|
+
/**
|
44930
|
+
* @maxLength `256`
|
44931
|
+
* @pattern `^[\S]*$`
|
44932
|
+
*/
|
44933
|
+
JavaVirtualEnv?: string;
|
44934
|
+
/**
|
44935
|
+
* @maxLength `2048`
|
44936
|
+
* @pattern `^s3://.+$`
|
44937
|
+
*/
|
44938
|
+
LogUri?: string;
|
44939
|
+
/**
|
44940
|
+
* @maxLength `256`
|
44941
|
+
* @pattern `^[\S]*$`
|
44942
|
+
*/
|
44943
|
+
PythonVirtualEnv?: string;
|
44944
|
+
/**
|
44945
|
+
* @maxLength `2048`
|
44946
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
44947
|
+
*/
|
44948
|
+
RuntimeRole?: string;
|
44949
|
+
/**
|
44950
|
+
* @maxLength `2048`
|
44951
|
+
* @pattern `^s3://.+$`
|
44952
|
+
*/
|
44953
|
+
TrustedCertificatesS3Uri?: string;
|
44954
|
+
};
|
44955
|
+
/**
|
44956
|
+
* Type definition for `AWS::DataZone::Connection.SparkGlueArgs`.
|
44957
|
+
* Spark Glue Args.
|
44958
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-sparkglueargs.html}
|
44959
|
+
*/
|
44960
|
+
export type DataZoneConnectionSparkGlueArgs = {
|
44961
|
+
/**
|
44962
|
+
* @maxLength `128`
|
44963
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
44964
|
+
*/
|
44965
|
+
Connection?: string;
|
44966
|
+
};
|
44967
|
+
/**
|
44968
|
+
* Type definition for `AWS::DataZone::Connection.SparkGluePropertiesInput`.
|
44969
|
+
* Spark Glue Properties Input.
|
44970
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-sparkgluepropertiesinput.html}
|
44971
|
+
*/
|
44972
|
+
export type DataZoneConnectionSparkGluePropertiesInput = {
|
44973
|
+
/**
|
44974
|
+
* Spark Glue Args.
|
44975
|
+
*/
|
44976
|
+
AdditionalArgs?: DataZoneConnectionSparkGlueArgs;
|
44977
|
+
/**
|
44978
|
+
* @minLength `1`
|
44979
|
+
* @maxLength `255`
|
44980
|
+
* @pattern `^[\S]*$`
|
44981
|
+
*/
|
44982
|
+
GlueConnectionName?: string;
|
44983
|
+
/**
|
44984
|
+
* @maxLength `256`
|
44985
|
+
* @pattern `^\w+\.\w+$`
|
44986
|
+
*/
|
44987
|
+
GlueVersion?: string;
|
44988
|
+
/**
|
44989
|
+
* @min `1`
|
44990
|
+
* @max `3000`
|
44991
|
+
*/
|
44992
|
+
IdleTimeout?: number;
|
44993
|
+
/**
|
44994
|
+
* @maxLength `256`
|
44995
|
+
* @pattern `^[\S]*$`
|
44996
|
+
*/
|
44997
|
+
JavaVirtualEnv?: string;
|
44998
|
+
/**
|
44999
|
+
* @min `1`
|
45000
|
+
* @max `1000`
|
45001
|
+
*/
|
45002
|
+
NumberOfWorkers?: number;
|
45003
|
+
/**
|
45004
|
+
* @maxLength `256`
|
45005
|
+
* @pattern `^[\S]*$`
|
45006
|
+
*/
|
45007
|
+
PythonVirtualEnv?: string;
|
45008
|
+
/**
|
45009
|
+
* @maxLength `256`
|
45010
|
+
* @pattern `^[G|Z].*$`
|
45011
|
+
*/
|
45012
|
+
WorkerType?: string;
|
45013
|
+
};
|
45014
|
+
/**
|
45015
|
+
* Type definition for `AWS::DataZone::Connection.TokenUrlParametersMap`.
|
45016
|
+
* The token URL parameters.
|
45017
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-tokenurlparametersmap.html}
|
45018
|
+
*/
|
45019
|
+
export type DataZoneConnectionTokenUrlParametersMap = Record<string, string>;
|
45020
|
+
/**
|
45021
|
+
* Type definition for `AWS::DataZone::Connection.UsernamePassword`.
|
45022
|
+
* The username and password to be used for authentication.
|
45023
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-usernamepassword.html}
|
45024
|
+
*/
|
45025
|
+
export type DataZoneConnectionUsernamePassword = {
|
45026
|
+
/**
|
45027
|
+
* @maxLength `64`
|
45028
|
+
* @pattern `^[\S]*$`
|
45029
|
+
*/
|
45030
|
+
Password: string;
|
45031
|
+
/**
|
45032
|
+
* @minLength `1`
|
45033
|
+
* @maxLength `127`
|
45034
|
+
* @pattern `^[\S]*$`
|
45035
|
+
*/
|
45036
|
+
Username: string;
|
45037
|
+
};
|
44255
45038
|
/**
|
44256
45039
|
* Resource type definition for `AWS::DataZone::DataSource`.
|
44257
45040
|
* A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
|
@@ -44706,6 +45489,13 @@ export type DataZoneDomainAttributes = {
|
|
44706
45489
|
* The URL of the data portal for this Amazon DataZone domain.
|
44707
45490
|
*/
|
44708
45491
|
PortalUrl: string;
|
45492
|
+
/**
|
45493
|
+
* The ID of the root domain in Amazon Datazone.
|
45494
|
+
* @minLength `1`
|
45495
|
+
* @maxLength `256`
|
45496
|
+
* @pattern `^[a-z0-9_\-]+$`
|
45497
|
+
*/
|
45498
|
+
RootDomainUnitId: string;
|
44709
45499
|
/**
|
44710
45500
|
* The status of the Amazon DataZone domain.
|
44711
45501
|
*/
|
@@ -161650,12 +162440,22 @@ export type RUMAppMonitorProps = {
|
|
161650
162440
|
*/
|
161651
162441
|
CwLogEnabled?: boolean;
|
161652
162442
|
/**
|
161653
|
-
*
|
162443
|
+
* A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
|
162444
|
+
*/
|
162445
|
+
DeobfuscationConfiguration?: RUMAppMonitorDeobfuscationConfiguration;
|
162446
|
+
/**
|
162447
|
+
* The top-level internet domain name for which your application has administrative authority. The CreateAppMonitor requires either the domain or the domain list.
|
161654
162448
|
* @minLength `1`
|
161655
162449
|
* @maxLength `253`
|
161656
162450
|
* @pattern `^(localhost)|^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$|^(?![-.])([A-Za-z0-9-\.\-]{0,63})((?![-])([a-zA-Z0-9]{1}|^[a-zA-Z0-9]{0,1}))\.(?![-])[A-Za-z-0-9]{1,63}((?![-])([a-zA-Z0-9]{1}|^[a-zA-Z0-9]{0,1}))|^(\*\.)(?![-.])([A-Za-z0-9-\.\-]{0,63})((?![-])([a-zA-Z0-9]{1}|^[a-zA-Z0-9]{0,1}))\.(?![-])[A-Za-z-0-9]{1,63}((?![-])([a-zA-Z0-9]{1}|^[a-zA-Z0-9]{0,1}))`
|
161657
162451
|
*/
|
161658
|
-
Domain
|
162452
|
+
Domain?: string;
|
162453
|
+
/**
|
162454
|
+
* The top-level internet domain names for which your application has administrative authority. The CreateAppMonitor requires either the domain or the domain list.
|
162455
|
+
* @minLength `1`
|
162456
|
+
* @maxLength `5`
|
162457
|
+
*/
|
162458
|
+
DomainList?: unknown[];
|
161659
162459
|
/**
|
161660
162460
|
* A name for the app monitor
|
161661
162461
|
* @minLength `1`
|
@@ -161762,6 +162562,27 @@ export type RUMAppMonitorCustomEvents = {
|
|
161762
162562
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-customeventsstatus.html}
|
161763
162563
|
*/
|
161764
162564
|
export type RUMAppMonitorCustomEventsStatus = "ENABLED" | "DISABLED";
|
162565
|
+
/**
|
162566
|
+
* Type definition for `AWS::RUM::AppMonitor.DeobfuscationConfiguration`.
|
162567
|
+
* A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
|
162568
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-deobfuscationconfiguration.html}
|
162569
|
+
*/
|
162570
|
+
export type RUMAppMonitorDeobfuscationConfiguration = {
|
162571
|
+
/**
|
162572
|
+
* A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.
|
162573
|
+
*/
|
162574
|
+
JavaScriptSourceMaps?: {
|
162575
|
+
/**
|
162576
|
+
* The S3Uri of the bucket or folder that stores the source map files. It is required if status is ENABLED.
|
162577
|
+
* @pattern `^s3://[a-z0-9][-.a-z0-9]{1,61}(?:/[-!_*'().a-z0-9A-Z]+(?:/[-!_*'().a-z0-9A-Z]+)*)?/?$`
|
162578
|
+
*/
|
162579
|
+
S3Uri?: string;
|
162580
|
+
/**
|
162581
|
+
* Specifies whether JavaScript error stack traces should be unminified for this app monitor. The default is for JavaScript error stack trace unminification to be DISABLED
|
162582
|
+
*/
|
162583
|
+
Status: "ENABLED" | "DISABLED";
|
162584
|
+
};
|
162585
|
+
};
|
161765
162586
|
/**
|
161766
162587
|
* Type definition for `AWS::RUM::AppMonitor.MetricDefinition`.
|
161767
162588
|
* A single metric definition
|
@@ -192805,6 +193626,7 @@ export interface ResourceTypes {
|
|
192805
193626
|
"AWS::DataSync::LocationSMB": DataSyncLocationSMBProps;
|
192806
193627
|
"AWS::DataSync::StorageSystem": DataSyncStorageSystemProps;
|
192807
193628
|
"AWS::DataSync::Task": DataSyncTaskProps;
|
193629
|
+
"AWS::DataZone::Connection": DataZoneConnectionProps;
|
192808
193630
|
"AWS::DataZone::DataSource": DataZoneDataSourceProps;
|
192809
193631
|
"AWS::DataZone::Domain": DataZoneDomainProps;
|
192810
193632
|
"AWS::DataZone::Environment": DataZoneEnvironmentProps;
|
@@ -194144,6 +194966,7 @@ export interface AttributeTypes {
|
|
194144
194966
|
"AWS::DataSync::LocationSMB": DataSyncLocationSMBAttributes;
|
194145
194967
|
"AWS::DataSync::StorageSystem": DataSyncStorageSystemAttributes;
|
194146
194968
|
"AWS::DataSync::Task": DataSyncTaskAttributes;
|
194969
|
+
"AWS::DataZone::Connection": DataZoneConnectionAttributes;
|
194147
194970
|
"AWS::DataZone::DataSource": DataZoneDataSourceAttributes;
|
194148
194971
|
"AWS::DataZone::Domain": DataZoneDomainAttributes;
|
194149
194972
|
"AWS::DataZone::Environment": DataZoneEnvironmentAttributes;
|
@@ -195418,6 +196241,7 @@ export declare const ResourceType: {
|
|
195418
196241
|
readonly DataSyncLocationSMB: "AWS::DataSync::LocationSMB";
|
195419
196242
|
readonly DataSyncStorageSystem: "AWS::DataSync::StorageSystem";
|
195420
196243
|
readonly DataSyncTask: "AWS::DataSync::Task";
|
196244
|
+
readonly DataZoneConnection: "AWS::DataZone::Connection";
|
195421
196245
|
readonly DataZoneDataSource: "AWS::DataZone::DataSource";
|
195422
196246
|
readonly DataZoneDomain: "AWS::DataZone::Domain";
|
195423
196247
|
readonly DataZoneEnvironment: "AWS::DataZone::Environment";
|