@intentius/chant-lexicon-aws 0.18.8 → 0.18.9

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "e88794ddb950e0a92d492e34eed4e7a606b06921201a53c0746a768f663995bb",
5
- "meta.json": "613c75978854b456ec3521938bce2ef4db92baecf56ab9559975c16e48efaed2",
6
- "types/index.d.ts": "48fda849d13057c830cd82fc6b9bb129c5529891fa55e09be2be5afd7b8c8d72",
4
+ "manifest.json": "3a3141f977a11abf0658875a57872086ae76b830179ac17a34f42458a48aeab4",
5
+ "meta.json": "ce2681cca9cd767c0ddd2b585cef4806cf45d276b317dc23232d4c270009298c",
6
+ "types/index.d.ts": "7b600e704884510b29cd7e383d50063291fe72d8e4f57d8a28e5f0f7456396b5",
7
7
  "rules/hardcoded-region.ts": "5a0eaf7ab391231fe6cd51426ece29539cb4b36f31c8dd060956638fed55722a",
8
8
  "rules/iam-wildcard.ts": "135d7217d278fef50939e605c5da32603ba35674b8c4b5c4d66a06c77903e945",
9
9
  "rules/s3-encryption.ts": "c4f9f8aa8dc382ed98c7b04e820a600590cc75335a8db2e087cbfbfe4003d09e",
@@ -40,5 +40,5 @@
40
40
  "skills/chant-aws.md": "4d65eb160e001f2af42eb7c622a5b498c2fd1f5afbd6c8155615c010fb265c63",
41
41
  "skills/chant-aws-eks.md": "8789255709ff004ad0a875fd5999edcdc66fc6e33d710db058d9f42703bcfdfe"
42
42
  },
43
- "composite": "835306f2c1fb073352f5b02e0cd65747f8d42172a163d07ba6765ab4238e0110"
43
+ "composite": "2b4b882cc0df44e98a0c248932b8861e0159ece077b67f4a5b48e81b3962421e"
44
44
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws",
3
- "version": "0.18.8",
3
+ "version": "0.18.9",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "AWS",
6
6
  "intrinsics": [
package/dist/meta.json CHANGED
@@ -24547,6 +24547,44 @@
24547
24547
  "kind": "property",
24548
24548
  "lexicon": "aws"
24549
24549
  },
24550
+ "DataLakeAssociation": {
24551
+ "resourceType": "AWS::Connect::DataLakeAssociation",
24552
+ "kind": "resource",
24553
+ "lexicon": "aws",
24554
+ "attrs": {
24555
+ "ResourceShareId": "ResourceShareId",
24556
+ "ResourceShareArn": "ResourceShareArn"
24557
+ },
24558
+ "propertyConstraints": {
24559
+ "InstanceId": {
24560
+ "pattern": "^[-a-zA-Z0-9]*$",
24561
+ "minLength": 1,
24562
+ "maxLength": 100
24563
+ },
24564
+ "DataSetId": {
24565
+ "minLength": 1,
24566
+ "maxLength": 255
24567
+ },
24568
+ "TargetAccountId": {
24569
+ "pattern": "^\\d+$",
24570
+ "minLength": 12,
24571
+ "maxLength": 12
24572
+ },
24573
+ "ResourceShareArn": {
24574
+ "maxLength": 2048
24575
+ }
24576
+ },
24577
+ "createOnly": [
24578
+ "InstanceId",
24579
+ "DataSetId",
24580
+ "TargetAccountId"
24581
+ ],
24582
+ "primaryIdentifier": [
24583
+ "InstanceId",
24584
+ "DataSetId",
24585
+ "TargetAccountId"
24586
+ ]
24587
+ },
24550
24588
  "DataLakeSettings": {
24551
24589
  "resourceType": "AWS::LakeFormation::DataLakeSettings",
24552
24590
  "kind": "resource",
@@ -8336,6 +8336,23 @@ export declare class DataLake {
8336
8336
  readonly S3BucketArn: string;
8337
8337
  }
8338
8338
 
8339
+ export declare class DataLakeAssociation {
8340
+ constructor(props: {
8341
+ /** The identifier of the analytics data set. */
8342
+ DataSetId: string;
8343
+ /** The identifier of the Amazon Connect instance */
8344
+ InstanceId: string;
8345
+ /** The Amazon Resource Name (ARN) of the AWS Resource Access Manager share */
8346
+ ResourceShareArn?: string;
8347
+ /** The AWS Resource Access Manager share ID */
8348
+ ResourceShareId?: string;
8349
+ /** The identifier of the target account */
8350
+ TargetAccountId?: string;
8351
+ }, attributes?: CFResourceAttributes);
8352
+ readonly ResourceShareArn: string;
8353
+ readonly ResourceShareId: string;
8354
+ }
8355
+
8339
8356
  export declare class DataLakeSettings {
8340
8357
  constructor(props: {
8341
8358
  Admins?: DataLakeSettings_DataLakePrincipal[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-aws",
3
- "version": "0.18.8",
3
+ "version": "0.18.9",
4
4
  "description": "AWS CloudFormation lexicon for chant — declarative IaC in TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -80,6 +80,6 @@
80
80
  "typescript": "^5.9.3"
81
81
  },
82
82
  "peerDependencies": {
83
- "@intentius/chant": "^0.18.8"
83
+ "@intentius/chant": "^0.18.9"
84
84
  }
85
85
  }
@@ -8336,6 +8336,23 @@ export declare class DataLake {
8336
8336
  readonly S3BucketArn: string;
8337
8337
  }
8338
8338
 
8339
+ export declare class DataLakeAssociation {
8340
+ constructor(props: {
8341
+ /** The identifier of the analytics data set. */
8342
+ DataSetId: string;
8343
+ /** The identifier of the Amazon Connect instance */
8344
+ InstanceId: string;
8345
+ /** The Amazon Resource Name (ARN) of the AWS Resource Access Manager share */
8346
+ ResourceShareArn?: string;
8347
+ /** The AWS Resource Access Manager share ID */
8348
+ ResourceShareId?: string;
8349
+ /** The identifier of the target account */
8350
+ TargetAccountId?: string;
8351
+ }, attributes?: CFResourceAttributes);
8352
+ readonly ResourceShareArn: string;
8353
+ readonly ResourceShareId: string;
8354
+ }
8355
+
8339
8356
  export declare class DataLakeSettings {
8340
8357
  constructor(props: {
8341
8358
  Admins?: DataLakeSettings_DataLakePrincipal[];
@@ -360,6 +360,7 @@ export const DataflowEndpointGroup = createResource("AWS::GroundStation::Dataflo
360
360
  export const DataflowEndpointGroupV2 = createResource("AWS::GroundStation::DataflowEndpointGroupV2", "aws", {"EndpointDetails":"EndpointDetails","Id":"Id","Arn":"Arn"});
361
361
  export const DataIntegration = createResource("AWS::AppIntegrations::DataIntegration", "aws", {"Id":"Id","DataIntegrationArn":"DataIntegrationArn"});
362
362
  export const DataLake = createResource("AWS::SecurityLake::DataLake", "aws", {"Arn":"Arn","S3BucketArn":"S3BucketArn"});
363
+ export const DataLakeAssociation = createResource("AWS::Connect::DataLakeAssociation", "aws", {"ResourceShareId":"ResourceShareId","ResourceShareArn":"ResourceShareArn"});
363
364
  export const DataLakeSettings = createResource("AWS::LakeFormation::DataLakeSettings", "aws", {"Id":"Id"});
364
365
  export const DataMigration = createResource("AWS::DMS::DataMigration", "aws", {"DataMigrationArn":"DataMigrationArn","DataMigrationCreateTime":"DataMigrationCreateTime"});
365
366
  export const DataPipelinePipeline = createResource("AWS::DataPipeline::Pipeline", "aws", {"PipelineId":"PipelineId"});
@@ -24547,6 +24547,44 @@
24547
24547
  "kind": "property",
24548
24548
  "lexicon": "aws"
24549
24549
  },
24550
+ "DataLakeAssociation": {
24551
+ "resourceType": "AWS::Connect::DataLakeAssociation",
24552
+ "kind": "resource",
24553
+ "lexicon": "aws",
24554
+ "attrs": {
24555
+ "ResourceShareId": "ResourceShareId",
24556
+ "ResourceShareArn": "ResourceShareArn"
24557
+ },
24558
+ "propertyConstraints": {
24559
+ "InstanceId": {
24560
+ "pattern": "^[-a-zA-Z0-9]*$",
24561
+ "minLength": 1,
24562
+ "maxLength": 100
24563
+ },
24564
+ "DataSetId": {
24565
+ "minLength": 1,
24566
+ "maxLength": 255
24567
+ },
24568
+ "TargetAccountId": {
24569
+ "pattern": "^\\d+$",
24570
+ "minLength": 12,
24571
+ "maxLength": 12
24572
+ },
24573
+ "ResourceShareArn": {
24574
+ "maxLength": 2048
24575
+ }
24576
+ },
24577
+ "createOnly": [
24578
+ "InstanceId",
24579
+ "DataSetId",
24580
+ "TargetAccountId"
24581
+ ],
24582
+ "primaryIdentifier": [
24583
+ "InstanceId",
24584
+ "DataSetId",
24585
+ "TargetAccountId"
24586
+ ]
24587
+ },
24550
24588
  "DataLakeSettings": {
24551
24589
  "resourceType": "AWS::LakeFormation::DataLakeSettings",
24552
24590
  "kind": "resource",