@intentius/chant-lexicon-aws 0.18.17 → 0.18.19
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/dist/actions/dynamodb.d.ts +2 -0
- package/dist/actions/dynamodb.d.ts.map +1 -1
- package/dist/actions/s3.d.ts +2 -0
- package/dist/actions/s3.d.ts.map +1 -1
- package/dist/components/apply.d.ts.map +1 -1
- package/dist/composites/alb-shared.d.ts.map +1 -1
- package/dist/composites/efs-with-access-point.d.ts.map +1 -1
- package/dist/composites/fargate-alb.d.ts.map +1 -1
- package/dist/composites/fargate-service.d.ts.map +1 -1
- package/dist/composites/lambda-dynamodb.d.ts.map +1 -1
- package/dist/composites/lambda-s3.d.ts.map +1 -1
- package/dist/composites/microvm-app.d.ts.map +1 -1
- package/dist/composites/rds-instance.d.ts.map +1 -1
- package/dist/composites/vpc-default.d.ts.map +1 -1
- package/dist/generated/index.d.ts +15 -7
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +252 -78
- package/dist/types/index.d.ts +194 -81
- package/package.json +2 -2
- package/src/actions/actions.test.ts +16 -2
- package/src/actions/dynamodb.ts +11 -0
- package/src/actions/s3.ts +12 -0
- package/src/components/apply.test.ts +51 -0
- package/src/components/apply.ts +21 -3
- package/src/composites/alb-shared.ts +5 -7
- package/src/composites/efs-with-access-point.ts +6 -16
- package/src/composites/fargate-alb.ts +35 -41
- package/src/composites/fargate-service.ts +26 -35
- package/src/composites/lambda-dynamodb.ts +44 -55
- package/src/composites/lambda-s3.ts +11 -6
- package/src/composites/microvm-app.ts +10 -4
- package/src/composites/rds-instance.ts +22 -35
- package/src/composites/vpc-default.ts +32 -39
- package/src/generated/index.d.ts +194 -81
- package/src/generated/index.ts +15 -7
- package/src/generated/lexicon-aws.json +252 -78
|
@@ -7161,6 +7161,92 @@
|
|
|
7161
7161
|
"tagUpdatable": false
|
|
7162
7162
|
}
|
|
7163
7163
|
},
|
|
7164
|
+
"AssessmentFramework": {
|
|
7165
|
+
"resourceType": "AWS::AuditManager::AssessmentFramework",
|
|
7166
|
+
"kind": "resource",
|
|
7167
|
+
"lexicon": "aws",
|
|
7168
|
+
"attrs": {
|
|
7169
|
+
"Arn": "Arn",
|
|
7170
|
+
"FrameworkId": "FrameworkId",
|
|
7171
|
+
"Type": "Type",
|
|
7172
|
+
"CreatedAt": "CreatedAt",
|
|
7173
|
+
"LastUpdatedAt": "LastUpdatedAt",
|
|
7174
|
+
"CreatedBy": "CreatedBy",
|
|
7175
|
+
"LastUpdatedBy": "LastUpdatedBy"
|
|
7176
|
+
},
|
|
7177
|
+
"propertyConstraints": {
|
|
7178
|
+
"Arn": {
|
|
7179
|
+
"pattern": "^arn:.*:auditmanager:",
|
|
7180
|
+
"minLength": 20,
|
|
7181
|
+
"maxLength": 2048
|
|
7182
|
+
},
|
|
7183
|
+
"FrameworkId": {
|
|
7184
|
+
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$",
|
|
7185
|
+
"minLength": 36,
|
|
7186
|
+
"maxLength": 36
|
|
7187
|
+
},
|
|
7188
|
+
"Name": {
|
|
7189
|
+
"pattern": "^[^\\\\]*$",
|
|
7190
|
+
"minLength": 1,
|
|
7191
|
+
"maxLength": 300
|
|
7192
|
+
},
|
|
7193
|
+
"Description": {
|
|
7194
|
+
"pattern": "^[\\w\\W\\s\\S]*$",
|
|
7195
|
+
"minLength": 1,
|
|
7196
|
+
"maxLength": 1000
|
|
7197
|
+
},
|
|
7198
|
+
"ComplianceType": {
|
|
7199
|
+
"pattern": "^[\\w\\W\\s\\S]*$",
|
|
7200
|
+
"minLength": 0,
|
|
7201
|
+
"maxLength": 100
|
|
7202
|
+
},
|
|
7203
|
+
"Type": {
|
|
7204
|
+
"enum": [
|
|
7205
|
+
"Standard",
|
|
7206
|
+
"Custom"
|
|
7207
|
+
]
|
|
7208
|
+
},
|
|
7209
|
+
"CreatedAt": {
|
|
7210
|
+
"format": "date-time"
|
|
7211
|
+
},
|
|
7212
|
+
"LastUpdatedAt": {
|
|
7213
|
+
"format": "date-time"
|
|
7214
|
+
},
|
|
7215
|
+
"CreatedBy": {
|
|
7216
|
+
"pattern": "^[a-zA-Z0-9\\s-_()\\[\\]]+$",
|
|
7217
|
+
"minLength": 1,
|
|
7218
|
+
"maxLength": 100
|
|
7219
|
+
},
|
|
7220
|
+
"LastUpdatedBy": {
|
|
7221
|
+
"pattern": "^[a-zA-Z0-9\\s-_()\\[\\]]+$",
|
|
7222
|
+
"minLength": 1,
|
|
7223
|
+
"maxLength": 100
|
|
7224
|
+
}
|
|
7225
|
+
},
|
|
7226
|
+
"primaryIdentifier": [
|
|
7227
|
+
"Arn"
|
|
7228
|
+
],
|
|
7229
|
+
"tagging": {
|
|
7230
|
+
"taggable": true,
|
|
7231
|
+
"tagOnCreate": true,
|
|
7232
|
+
"tagUpdatable": true
|
|
7233
|
+
}
|
|
7234
|
+
},
|
|
7235
|
+
"AssessmentFramework_ControlSet": {
|
|
7236
|
+
"resourceType": "AWS::AuditManager::AssessmentFramework.ControlSet",
|
|
7237
|
+
"kind": "property",
|
|
7238
|
+
"lexicon": "aws"
|
|
7239
|
+
},
|
|
7240
|
+
"AssessmentFramework_ControlSetControl": {
|
|
7241
|
+
"resourceType": "AWS::AuditManager::AssessmentFramework.ControlSetControl",
|
|
7242
|
+
"kind": "property",
|
|
7243
|
+
"lexicon": "aws"
|
|
7244
|
+
},
|
|
7245
|
+
"AssessmentFramework_Tag": {
|
|
7246
|
+
"resourceType": "AWS::AuditManager::AssessmentFramework.Tag",
|
|
7247
|
+
"kind": "property",
|
|
7248
|
+
"lexicon": "aws"
|
|
7249
|
+
},
|
|
7164
7250
|
"AssessmentReportsDestination": {
|
|
7165
7251
|
"resourceType": "AWS::AuditManager::Assessment.AssessmentReportsDestination",
|
|
7166
7252
|
"kind": "property",
|
|
@@ -15862,6 +15948,37 @@
|
|
|
15862
15948
|
"kind": "property",
|
|
15863
15949
|
"lexicon": "aws"
|
|
15864
15950
|
},
|
|
15951
|
+
"CodeInterpreter": {
|
|
15952
|
+
"resourceType": "AWS::BedrockAgentCore::CodeInterpreter",
|
|
15953
|
+
"kind": "resource",
|
|
15954
|
+
"lexicon": "aws",
|
|
15955
|
+
"attrs": {
|
|
15956
|
+
"CodeInterpreterArn": "CodeInterpreterArn",
|
|
15957
|
+
"CodeInterpreterId": "CodeInterpreterId",
|
|
15958
|
+
"Status": "Status"
|
|
15959
|
+
},
|
|
15960
|
+
"propertyConstraints": {
|
|
15961
|
+
"CodeInterpreterArn": {
|
|
15962
|
+
"pattern": "^arn:[a-z0-9-]+:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):code-interpreter/aws\\.codeinterpreter\\.v1$"
|
|
15963
|
+
},
|
|
15964
|
+
"CodeInterpreterId": {
|
|
15965
|
+
"pattern": "^aws\\.codeinterpreter\\.v1$"
|
|
15966
|
+
},
|
|
15967
|
+
"Status": {
|
|
15968
|
+
"enum": [
|
|
15969
|
+
"CREATING",
|
|
15970
|
+
"CREATE_FAILED",
|
|
15971
|
+
"READY",
|
|
15972
|
+
"DELETING",
|
|
15973
|
+
"DELETE_FAILED",
|
|
15974
|
+
"DELETED"
|
|
15975
|
+
]
|
|
15976
|
+
}
|
|
15977
|
+
},
|
|
15978
|
+
"primaryIdentifier": [
|
|
15979
|
+
"CodeInterpreterArn"
|
|
15980
|
+
]
|
|
15981
|
+
},
|
|
15865
15982
|
"CodeInterpreterCustom": {
|
|
15866
15983
|
"resourceType": "AWS::BedrockAgentCore::CodeInterpreterCustom",
|
|
15867
15984
|
"kind": "resource",
|
|
@@ -20915,6 +21032,16 @@
|
|
|
20915
21032
|
"kind": "property",
|
|
20916
21033
|
"lexicon": "aws"
|
|
20917
21034
|
},
|
|
21035
|
+
"ControlSet": {
|
|
21036
|
+
"resourceType": "AWS::AuditManager::AssessmentFramework.ControlSet",
|
|
21037
|
+
"kind": "property",
|
|
21038
|
+
"lexicon": "aws"
|
|
21039
|
+
},
|
|
21040
|
+
"ControlSetControl": {
|
|
21041
|
+
"resourceType": "AWS::AuditManager::AssessmentFramework.ControlSetControl",
|
|
21042
|
+
"kind": "property",
|
|
21043
|
+
"lexicon": "aws"
|
|
21044
|
+
},
|
|
20918
21045
|
"CookieObject": {
|
|
20919
21046
|
"resourceType": "AWS::Lightsail::Distribution.CookieObject",
|
|
20920
21047
|
"kind": "property",
|
|
@@ -37390,6 +37517,84 @@
|
|
|
37390
37517
|
"kind": "property",
|
|
37391
37518
|
"lexicon": "aws"
|
|
37392
37519
|
},
|
|
37520
|
+
"EvidentlyExperiment": {
|
|
37521
|
+
"resourceType": "AWS::Evidently::Experiment",
|
|
37522
|
+
"kind": "resource",
|
|
37523
|
+
"lexicon": "aws",
|
|
37524
|
+
"attrs": {
|
|
37525
|
+
"Arn": "Arn"
|
|
37526
|
+
},
|
|
37527
|
+
"propertyConstraints": {
|
|
37528
|
+
"Arn": {
|
|
37529
|
+
"pattern": "arn:[^:]*:[^:]*:[^:]*:[^:]*:project/[-a-zA-Z0-9._]*/experiment/[-a-zA-Z0-9._]*"
|
|
37530
|
+
},
|
|
37531
|
+
"Name": {
|
|
37532
|
+
"pattern": "[-a-zA-Z0-9._]*",
|
|
37533
|
+
"minLength": 1,
|
|
37534
|
+
"maxLength": 127
|
|
37535
|
+
},
|
|
37536
|
+
"Project": {
|
|
37537
|
+
"pattern": "([-a-zA-Z0-9._]*)|(arn:[^:]*:[^:]*:[^:]*:[^:]*:project/[-a-zA-Z0-9._]*)",
|
|
37538
|
+
"minLength": 0,
|
|
37539
|
+
"maxLength": 2048
|
|
37540
|
+
},
|
|
37541
|
+
"Description": {
|
|
37542
|
+
"minLength": 0,
|
|
37543
|
+
"maxLength": 160
|
|
37544
|
+
},
|
|
37545
|
+
"RandomizationSalt": {
|
|
37546
|
+
"pattern": ".*",
|
|
37547
|
+
"minLength": 0,
|
|
37548
|
+
"maxLength": 127
|
|
37549
|
+
},
|
|
37550
|
+
"SamplingRate": {
|
|
37551
|
+
"minimum": 0,
|
|
37552
|
+
"maximum": 100000
|
|
37553
|
+
},
|
|
37554
|
+
"Segment": {
|
|
37555
|
+
"pattern": "([-a-zA-Z0-9._]*)|(arn:[^:]*:[^:]*:[^:]*:[^:]*:segment/[-a-zA-Z0-9._]*)",
|
|
37556
|
+
"minLength": 0,
|
|
37557
|
+
"maxLength": 2048
|
|
37558
|
+
}
|
|
37559
|
+
},
|
|
37560
|
+
"createOnly": [
|
|
37561
|
+
"Name",
|
|
37562
|
+
"Project"
|
|
37563
|
+
],
|
|
37564
|
+
"primaryIdentifier": [
|
|
37565
|
+
"Arn"
|
|
37566
|
+
]
|
|
37567
|
+
},
|
|
37568
|
+
"EvidentlyExperiment_MetricGoalObject": {
|
|
37569
|
+
"resourceType": "AWS::Evidently::Experiment.MetricGoalObject",
|
|
37570
|
+
"kind": "property",
|
|
37571
|
+
"lexicon": "aws"
|
|
37572
|
+
},
|
|
37573
|
+
"EvidentlyExperiment_OnlineAbConfigObject": {
|
|
37574
|
+
"resourceType": "AWS::Evidently::Experiment.OnlineAbConfigObject",
|
|
37575
|
+
"kind": "property",
|
|
37576
|
+
"lexicon": "aws"
|
|
37577
|
+
},
|
|
37578
|
+
"EvidentlyExperiment_RunningStatusObject": {
|
|
37579
|
+
"resourceType": "AWS::Evidently::Experiment.RunningStatusObject",
|
|
37580
|
+
"kind": "property",
|
|
37581
|
+
"lexicon": "aws"
|
|
37582
|
+
},
|
|
37583
|
+
"EvidentlyExperiment_Tag": {
|
|
37584
|
+
"resourceType": "AWS::Evidently::Experiment.Tag",
|
|
37585
|
+
"kind": "property",
|
|
37586
|
+
"lexicon": "aws"
|
|
37587
|
+
},
|
|
37588
|
+
"EvidentlyExperiment_TreatmentObject": {
|
|
37589
|
+
"resourceType": "AWS::Evidently::Experiment.TreatmentObject",
|
|
37590
|
+
"kind": "property",
|
|
37591
|
+
"lexicon": "aws"
|
|
37592
|
+
},
|
|
37593
|
+
"EvidentlyExperiment_TreatmentToWeight": {
|
|
37594
|
+
"resourceType": "AWS::Evidently::Experiment.TreatmentToWeight",
|
|
37595
|
+
"kind": "property",
|
|
37596
|
+
"lexicon": "aws"
|
|
37597
|
+
},
|
|
37393
37598
|
"EvidentlyProject": {
|
|
37394
37599
|
"resourceType": "AWS::Evidently::Project",
|
|
37395
37600
|
"kind": "resource",
|
|
@@ -37553,54 +37758,6 @@
|
|
|
37553
37758
|
"kind": "property",
|
|
37554
37759
|
"lexicon": "aws"
|
|
37555
37760
|
},
|
|
37556
|
-
"Experiment": {
|
|
37557
|
-
"resourceType": "AWS::Evidently::Experiment",
|
|
37558
|
-
"kind": "resource",
|
|
37559
|
-
"lexicon": "aws",
|
|
37560
|
-
"attrs": {
|
|
37561
|
-
"Arn": "Arn"
|
|
37562
|
-
},
|
|
37563
|
-
"propertyConstraints": {
|
|
37564
|
-
"Arn": {
|
|
37565
|
-
"pattern": "arn:[^:]*:[^:]*:[^:]*:[^:]*:project/[-a-zA-Z0-9._]*/experiment/[-a-zA-Z0-9._]*"
|
|
37566
|
-
},
|
|
37567
|
-
"Name": {
|
|
37568
|
-
"pattern": "[-a-zA-Z0-9._]*",
|
|
37569
|
-
"minLength": 1,
|
|
37570
|
-
"maxLength": 127
|
|
37571
|
-
},
|
|
37572
|
-
"Project": {
|
|
37573
|
-
"pattern": "([-a-zA-Z0-9._]*)|(arn:[^:]*:[^:]*:[^:]*:[^:]*:project/[-a-zA-Z0-9._]*)",
|
|
37574
|
-
"minLength": 0,
|
|
37575
|
-
"maxLength": 2048
|
|
37576
|
-
},
|
|
37577
|
-
"Description": {
|
|
37578
|
-
"minLength": 0,
|
|
37579
|
-
"maxLength": 160
|
|
37580
|
-
},
|
|
37581
|
-
"RandomizationSalt": {
|
|
37582
|
-
"pattern": ".*",
|
|
37583
|
-
"minLength": 0,
|
|
37584
|
-
"maxLength": 127
|
|
37585
|
-
},
|
|
37586
|
-
"SamplingRate": {
|
|
37587
|
-
"minimum": 0,
|
|
37588
|
-
"maximum": 100000
|
|
37589
|
-
},
|
|
37590
|
-
"Segment": {
|
|
37591
|
-
"pattern": "([-a-zA-Z0-9._]*)|(arn:[^:]*:[^:]*:[^:]*:[^:]*:segment/[-a-zA-Z0-9._]*)",
|
|
37592
|
-
"minLength": 0,
|
|
37593
|
-
"maxLength": 2048
|
|
37594
|
-
}
|
|
37595
|
-
},
|
|
37596
|
-
"createOnly": [
|
|
37597
|
-
"Name",
|
|
37598
|
-
"Project"
|
|
37599
|
-
],
|
|
37600
|
-
"primaryIdentifier": [
|
|
37601
|
-
"Arn"
|
|
37602
|
-
]
|
|
37603
|
-
},
|
|
37604
37761
|
"ExperimentConfig": {
|
|
37605
37762
|
"resourceType": "AWS::SageMaker::ProcessingJob.ExperimentConfig",
|
|
37606
37763
|
"kind": "property",
|
|
@@ -37655,36 +37812,6 @@
|
|
|
37655
37812
|
"kind": "property",
|
|
37656
37813
|
"lexicon": "aws"
|
|
37657
37814
|
},
|
|
37658
|
-
"Experiment_MetricGoalObject": {
|
|
37659
|
-
"resourceType": "AWS::Evidently::Experiment.MetricGoalObject",
|
|
37660
|
-
"kind": "property",
|
|
37661
|
-
"lexicon": "aws"
|
|
37662
|
-
},
|
|
37663
|
-
"Experiment_OnlineAbConfigObject": {
|
|
37664
|
-
"resourceType": "AWS::Evidently::Experiment.OnlineAbConfigObject",
|
|
37665
|
-
"kind": "property",
|
|
37666
|
-
"lexicon": "aws"
|
|
37667
|
-
},
|
|
37668
|
-
"Experiment_RunningStatusObject": {
|
|
37669
|
-
"resourceType": "AWS::Evidently::Experiment.RunningStatusObject",
|
|
37670
|
-
"kind": "property",
|
|
37671
|
-
"lexicon": "aws"
|
|
37672
|
-
},
|
|
37673
|
-
"Experiment_Tag": {
|
|
37674
|
-
"resourceType": "AWS::Evidently::Experiment.Tag",
|
|
37675
|
-
"kind": "property",
|
|
37676
|
-
"lexicon": "aws"
|
|
37677
|
-
},
|
|
37678
|
-
"Experiment_TreatmentObject": {
|
|
37679
|
-
"resourceType": "AWS::Evidently::Experiment.TreatmentObject",
|
|
37680
|
-
"kind": "property",
|
|
37681
|
-
"lexicon": "aws"
|
|
37682
|
-
},
|
|
37683
|
-
"Experiment_TreatmentToWeight": {
|
|
37684
|
-
"resourceType": "AWS::Evidently::Experiment.TreatmentToWeight",
|
|
37685
|
-
"kind": "property",
|
|
37686
|
-
"lexicon": "aws"
|
|
37687
|
-
},
|
|
37688
37815
|
"ExpirationDataRule": {
|
|
37689
37816
|
"resourceType": "AWS::S3Files::FileSystem.ExpirationDataRule",
|
|
37690
37817
|
"kind": "property",
|
|
@@ -85487,6 +85614,53 @@
|
|
|
85487
85614
|
"kind": "property",
|
|
85488
85615
|
"lexicon": "aws"
|
|
85489
85616
|
},
|
|
85617
|
+
"SageMakerExperiment": {
|
|
85618
|
+
"resourceType": "AWS::SageMaker::Experiment",
|
|
85619
|
+
"kind": "resource",
|
|
85620
|
+
"lexicon": "aws",
|
|
85621
|
+
"attrs": {
|
|
85622
|
+
"Arn": "Arn",
|
|
85623
|
+
"CreationTime": "CreationTime",
|
|
85624
|
+
"LastModifiedTime": "LastModifiedTime"
|
|
85625
|
+
},
|
|
85626
|
+
"propertyConstraints": {
|
|
85627
|
+
"Arn": {
|
|
85628
|
+
"pattern": "^arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:experiment/",
|
|
85629
|
+
"maxLength": 256
|
|
85630
|
+
},
|
|
85631
|
+
"ExperimentName": {
|
|
85632
|
+
"pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}$",
|
|
85633
|
+
"minLength": 1,
|
|
85634
|
+
"maxLength": 120
|
|
85635
|
+
},
|
|
85636
|
+
"DisplayName": {
|
|
85637
|
+
"pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}$",
|
|
85638
|
+
"minLength": 1,
|
|
85639
|
+
"maxLength": 120
|
|
85640
|
+
},
|
|
85641
|
+
"Description": {
|
|
85642
|
+
"minLength": 0,
|
|
85643
|
+
"maxLength": 3072
|
|
85644
|
+
},
|
|
85645
|
+
"CreationTime": {
|
|
85646
|
+
"format": "date-time"
|
|
85647
|
+
},
|
|
85648
|
+
"LastModifiedTime": {
|
|
85649
|
+
"format": "date-time"
|
|
85650
|
+
}
|
|
85651
|
+
},
|
|
85652
|
+
"createOnly": [
|
|
85653
|
+
"ExperimentName"
|
|
85654
|
+
],
|
|
85655
|
+
"primaryIdentifier": [
|
|
85656
|
+
"Arn"
|
|
85657
|
+
],
|
|
85658
|
+
"tagging": {
|
|
85659
|
+
"taggable": true,
|
|
85660
|
+
"tagOnCreate": true,
|
|
85661
|
+
"tagUpdatable": true
|
|
85662
|
+
}
|
|
85663
|
+
},
|
|
85490
85664
|
"SageMakerHub": {
|
|
85491
85665
|
"resourceType": "AWS::SageMaker::Hub",
|
|
85492
85666
|
"kind": "resource",
|