@intentius/chant-lexicon-aws 0.18.16 → 0.18.18

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.
@@ -107,7 +107,11 @@ export type AgentCoreAgentResult = {
107
107
  export const AgentCoreAgent = Composite<AgentCoreAgentProps, AgentCoreAgentResult>((props) => {
108
108
  const { defaults } = props;
109
109
  const networkMode = props.networkMode ?? "PUBLIC";
110
- if (networkMode === "VPC" && (!props.vpcSubnetIds?.length || !props.vpcSecurityGroupIds?.length)) {
110
+ // Check presence, not `.length`: a cross-stack value (Fn::Split of a Parameter,
111
+ // the shape stackOutput/Ref/Split produce) is a truthy intrinsic object with no
112
+ // `.length`, so a `.length` check wrongly rejects a value that WAS supplied
113
+ // (#938). An actually-empty list is caught by CloudFormation at deploy time.
114
+ if (networkMode === "VPC" && (props.vpcSubnetIds === undefined || props.vpcSecurityGroupIds === undefined)) {
111
115
  throw new Error("AgentCoreAgent requires vpcSubnetIds and vpcSecurityGroupIds when networkMode is \"VPC\"");
112
116
  }
113
117
  const memoryEventExpiryDays = props.memoryEventExpiryDays ?? 30;
@@ -2707,6 +2707,42 @@ export declare class Assessment {
2707
2707
  readonly CreationTime: number;
2708
2708
  }
2709
2709
 
2710
+ export declare class AssessmentFramework {
2711
+ constructor(props: {
2712
+ /** The control sets that are associated with the framework. */
2713
+ ControlSets: AssessmentFramework_ControlSet[];
2714
+ /** The name of the framework. */
2715
+ Name: string;
2716
+ /** The Amazon Resource Name (ARN) of the framework. */
2717
+ Arn?: string;
2718
+ /** The compliance type that the framework supports, such as CIS or HIPAA. */
2719
+ ComplianceType?: string;
2720
+ /** The time when the framework was created. */
2721
+ CreatedAt?: string;
2722
+ /** The user or role that created the framework. */
2723
+ CreatedBy?: string;
2724
+ /** The description of the framework. */
2725
+ Description?: string;
2726
+ /** The unique identifier for the framework. */
2727
+ FrameworkId?: string;
2728
+ /** The time when the framework was most recently updated. */
2729
+ LastUpdatedAt?: string;
2730
+ /** The user or role that most recently updated the framework. */
2731
+ LastUpdatedBy?: string;
2732
+ /** The tags associated with the framework. */
2733
+ Tags?: AssessmentFramework_Tag[];
2734
+ /** The framework type, such as a standard framework or a custom framework. */
2735
+ Type?: "Custom" | "Standard";
2736
+ }, attributes?: CFResourceAttributes);
2737
+ readonly Arn: string;
2738
+ readonly CreatedAt: string;
2739
+ readonly CreatedBy: string;
2740
+ readonly FrameworkId: string;
2741
+ readonly LastUpdatedAt: string;
2742
+ readonly LastUpdatedBy: string;
2743
+ readonly Type: "Custom" | "Standard";
2744
+ }
2745
+
2710
2746
  export declare class AssessmentTarget {
2711
2747
  constructor(props: {
2712
2748
  Arn?: string;
@@ -5684,6 +5720,20 @@ export declare class CodeDeployApplication {
5684
5720
  }, attributes?: CFResourceAttributes);
5685
5721
  }
5686
5722
 
5723
+ export declare class CodeInterpreter {
5724
+ constructor(props: {
5725
+ /** The Amazon Resource Name (ARN) of the code interpreter. */
5726
+ CodeInterpreterArn?: string;
5727
+ /** The unique identifier of the code interpreter. */
5728
+ CodeInterpreterId?: string;
5729
+ /** The current status of the code interpreter. */
5730
+ Status?: "CREATE_FAILED" | "CREATING" | "DELETED" | "DELETE_FAILED" | "DELETING" | "READY";
5731
+ }, attributes?: CFResourceAttributes);
5732
+ readonly CodeInterpreterArn: string;
5733
+ readonly CodeInterpreterId: string;
5734
+ readonly Status: "CREATE_FAILED" | "CREATING" | "DELETED" | "DELETE_FAILED" | "DELETING" | "READY";
5735
+ }
5736
+
5687
5737
  export declare class CodeInterpreterCustom {
5688
5738
  constructor(props: {
5689
5739
  /** The name of the code interpreter. */
@@ -13747,6 +13797,27 @@ export declare class EventType {
13747
13797
  readonly LastUpdatedTime: string;
13748
13798
  }
13749
13799
 
13800
+ export declare class EvidentlyExperiment {
13801
+ constructor(props: {
13802
+ MetricGoals: EvidentlyExperiment_MetricGoalObject[];
13803
+ Name: string;
13804
+ OnlineAbConfig: EvidentlyExperiment_OnlineAbConfigObject;
13805
+ Project: string;
13806
+ Treatments: EvidentlyExperiment_TreatmentObject[];
13807
+ Arn?: string;
13808
+ Description?: string;
13809
+ RandomizationSalt?: string;
13810
+ RemoveSegment?: boolean;
13811
+ /** Start Experiment. Default is False */
13812
+ RunningStatus?: EvidentlyExperiment_RunningStatusObject;
13813
+ SamplingRate?: number;
13814
+ Segment?: string;
13815
+ /** An array of key-value pairs to apply to this resource. */
13816
+ Tags?: EvidentlyExperiment_Tag[];
13817
+ }, attributes?: CFResourceAttributes);
13818
+ readonly Arn: string;
13819
+ }
13820
+
13750
13821
  export declare class EvidentlyProject {
13751
13822
  constructor(props: {
13752
13823
  Name: string;
@@ -13828,27 +13899,6 @@ export declare class ExecutionPlan {
13828
13899
  readonly Id: string;
13829
13900
  }
13830
13901
 
13831
- export declare class Experiment {
13832
- constructor(props: {
13833
- MetricGoals: Experiment_MetricGoalObject[];
13834
- Name: string;
13835
- OnlineAbConfig: Experiment_OnlineAbConfigObject;
13836
- Project: string;
13837
- Treatments: Experiment_TreatmentObject[];
13838
- Arn?: string;
13839
- Description?: string;
13840
- RandomizationSalt?: string;
13841
- RemoveSegment?: boolean;
13842
- /** Start Experiment. Default is False */
13843
- RunningStatus?: Experiment_RunningStatusObject;
13844
- SamplingRate?: number;
13845
- Segment?: string;
13846
- /** An array of key-value pairs to apply to this resource. */
13847
- Tags?: Experiment_Tag[];
13848
- }, attributes?: CFResourceAttributes);
13849
- readonly Arn: string;
13850
- }
13851
-
13852
13902
  export declare class ExperimentTemplate {
13853
13903
  constructor(props: {
13854
13904
  Description: string;
@@ -17601,14 +17651,14 @@ export declare class InstanceGroupConfig {
17601
17651
  JobFlowId: string;
17602
17652
  AutoScalingPolicy?: InstanceGroupConfig_AutoScalingPolicy;
17603
17653
  BidPrice?: string;
17604
- Configurations?: InstanceGroupConfig_Configuration[];
17654
+ Configurations?: InstanceGroupConfig_AppConfiguration[];
17605
17655
  CustomAmiId?: string;
17606
17656
  EbsConfiguration?: InstanceGroupConfig_EbsConfiguration;
17607
- Id?: string;
17657
+ InstanceGroupId?: string;
17608
17658
  Market?: string;
17609
17659
  Name?: string;
17610
17660
  }, attributes?: CFResourceAttributes);
17611
- readonly Id: string;
17661
+ readonly InstanceGroupId: string;
17612
17662
  }
17613
17663
 
17614
17664
  export declare class InstanceProfile {
@@ -30766,6 +30816,28 @@ export declare class SageMakerEndpoint {
30766
30816
  readonly EndpointName: string;
30767
30817
  }
30768
30818
 
30819
+ export declare class SageMakerExperiment {
30820
+ constructor(props: {
30821
+ /** The name of the experiment. Must be unique in your AWS account and is not case-sensitive. */
30822
+ ExperimentName: string;
30823
+ /** The Amazon Resource Name (ARN) of the experiment. */
30824
+ Arn?: string;
30825
+ /** When the experiment was created. */
30826
+ CreationTime?: string;
30827
+ /** The description of the experiment. */
30828
+ Description?: string;
30829
+ /** The name of the experiment as displayed. The name does not need to be unique. */
30830
+ DisplayName?: string;
30831
+ /** When the experiment was last modified. */
30832
+ LastModifiedTime?: string;
30833
+ /** A list of tags to associate with the experiment. */
30834
+ Tags?: Record<string, unknown>[];
30835
+ }, attributes?: CFResourceAttributes);
30836
+ readonly Arn: string;
30837
+ readonly CreationTime: string;
30838
+ readonly LastModifiedTime: string;
30839
+ }
30840
+
30769
30841
  export declare class SageMakerHub {
30770
30842
  constructor(props: {
30771
30843
  /** A description of the hub. */
@@ -41403,6 +41475,14 @@ export declare class AppConfigResourceObject {
41403
41475
  });
41404
41476
  }
41405
41477
 
41478
+ export declare class AppConfiguration {
41479
+ constructor(props: {
41480
+ Classification?: string;
41481
+ ConfigurationProperties?: Record<string, unknown>;
41482
+ Configurations?: InstanceGroupConfig_AppConfiguration[];
41483
+ });
41484
+ }
41485
+
41406
41486
  export declare class AppCookieStickinessPolicy {
41407
41487
  constructor(props: {
41408
41488
  /** The name of the application cookie used for stickiness. */
@@ -43713,6 +43793,31 @@ export declare class Assessment_Tag {
43713
43793
  });
43714
43794
  }
43715
43795
 
43796
+ export declare class AssessmentFramework_ControlSet {
43797
+ constructor(props: {
43798
+ /** The list of controls within the control set. */
43799
+ Controls: AssessmentFramework_ControlSetControl[];
43800
+ /** The name of the control set. */
43801
+ Name: string;
43802
+ });
43803
+ }
43804
+
43805
+ export declare class AssessmentFramework_ControlSetControl {
43806
+ constructor(props: {
43807
+ /** The unique identifier of the control. */
43808
+ Id: string;
43809
+ });
43810
+ }
43811
+
43812
+ export declare class AssessmentFramework_Tag {
43813
+ constructor(props: {
43814
+ /** The key name of the tag. */
43815
+ Key: string;
43816
+ /** The value for the tag. */
43817
+ Value: string;
43818
+ });
43819
+ }
43820
+
43716
43821
  export declare class AssessmentReportsDestination {
43717
43822
  constructor(props: {
43718
43823
  Destination?: string;
@@ -56326,6 +56431,22 @@ export declare class ControlPlaneScalingConfig {
56326
56431
  });
56327
56432
  }
56328
56433
 
56434
+ export declare class ControlSet {
56435
+ constructor(props: {
56436
+ /** The list of controls within the control set. */
56437
+ Controls: AssessmentFramework_ControlSetControl[];
56438
+ /** The name of the control set. */
56439
+ Name: string;
56440
+ });
56441
+ }
56442
+
56443
+ export declare class ControlSetControl {
56444
+ constructor(props: {
56445
+ /** The unique identifier of the control. */
56446
+ Id: string;
56447
+ });
56448
+ }
56449
+
56329
56450
  export declare class CookieObject {
56330
56451
  constructor(props: {
56331
56452
  /** The specific cookies to forward to your distribution's origin. */
@@ -69802,6 +69923,65 @@ export declare class EventType_Tag {
69802
69923
  });
69803
69924
  }
69804
69925
 
69926
+ export declare class EvidentlyExperiment_MetricGoalObject {
69927
+ constructor(props: {
69928
+ DesiredChange: "DECREASE" | "INCREASE";
69929
+ /** The JSON path to reference the entity id in the event. */
69930
+ EntityIdKey: string;
69931
+ MetricName: string;
69932
+ /** The JSON path to reference the numerical metric value in the event. */
69933
+ ValueKey: string;
69934
+ /** Event patterns have the same structure as the events they match. Rules use event patterns to select events. An event pattern either matches an event or it doesn't. */
69935
+ EventPattern?: string;
69936
+ UnitLabel?: string;
69937
+ });
69938
+ }
69939
+
69940
+ export declare class EvidentlyExperiment_OnlineAbConfigObject {
69941
+ constructor(props: {
69942
+ ControlTreatmentName?: string;
69943
+ TreatmentWeights?: EvidentlyExperiment_TreatmentToWeight[];
69944
+ });
69945
+ }
69946
+
69947
+ export declare class EvidentlyExperiment_RunningStatusObject {
69948
+ constructor(props: {
69949
+ /** Provide the analysis Completion time for an experiment */
69950
+ AnalysisCompleteTime?: string;
69951
+ /** Provide CANCELLED or COMPLETED desired state when stopping an experiment */
69952
+ DesiredState?: string;
69953
+ /** Reason is a required input for stopping the experiment */
69954
+ Reason?: string;
69955
+ /** Provide START or STOP action to apply on an experiment */
69956
+ Status?: string;
69957
+ });
69958
+ }
69959
+
69960
+ export declare class EvidentlyExperiment_Tag {
69961
+ constructor(props: {
69962
+ /** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
69963
+ Key: string;
69964
+ /** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
69965
+ Value: string;
69966
+ });
69967
+ }
69968
+
69969
+ export declare class EvidentlyExperiment_TreatmentObject {
69970
+ constructor(props: {
69971
+ Feature: string;
69972
+ TreatmentName: string;
69973
+ Variation: string;
69974
+ Description?: string;
69975
+ });
69976
+ }
69977
+
69978
+ export declare class EvidentlyExperiment_TreatmentToWeight {
69979
+ constructor(props: {
69980
+ SplitWeight: number;
69981
+ Treatment: string;
69982
+ });
69983
+ }
69984
+
69805
69985
  export declare class EvidentlyProject_AppConfigResourceObject {
69806
69986
  constructor(props: {
69807
69987
  ApplicationId: string;
@@ -69971,65 +70151,6 @@ export declare class ExecutiveSummaryOption {
69971
70151
  });
69972
70152
  }
69973
70153
 
69974
- export declare class Experiment_MetricGoalObject {
69975
- constructor(props: {
69976
- DesiredChange: "DECREASE" | "INCREASE";
69977
- /** The JSON path to reference the entity id in the event. */
69978
- EntityIdKey: string;
69979
- MetricName: string;
69980
- /** The JSON path to reference the numerical metric value in the event. */
69981
- ValueKey: string;
69982
- /** Event patterns have the same structure as the events they match. Rules use event patterns to select events. An event pattern either matches an event or it doesn't. */
69983
- EventPattern?: string;
69984
- UnitLabel?: string;
69985
- });
69986
- }
69987
-
69988
- export declare class Experiment_OnlineAbConfigObject {
69989
- constructor(props: {
69990
- ControlTreatmentName?: string;
69991
- TreatmentWeights?: Experiment_TreatmentToWeight[];
69992
- });
69993
- }
69994
-
69995
- export declare class Experiment_RunningStatusObject {
69996
- constructor(props: {
69997
- /** Provide the analysis Completion time for an experiment */
69998
- AnalysisCompleteTime?: string;
69999
- /** Provide CANCELLED or COMPLETED desired state when stopping an experiment */
70000
- DesiredState?: string;
70001
- /** Reason is a required input for stopping the experiment */
70002
- Reason?: string;
70003
- /** Provide START or STOP action to apply on an experiment */
70004
- Status?: string;
70005
- });
70006
- }
70007
-
70008
- export declare class Experiment_Tag {
70009
- constructor(props: {
70010
- /** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
70011
- Key: string;
70012
- /** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
70013
- Value: string;
70014
- });
70015
- }
70016
-
70017
- export declare class Experiment_TreatmentObject {
70018
- constructor(props: {
70019
- Feature: string;
70020
- TreatmentName: string;
70021
- Variation: string;
70022
- Description?: string;
70023
- });
70024
- }
70025
-
70026
- export declare class Experiment_TreatmentToWeight {
70027
- constructor(props: {
70028
- SplitWeight: number;
70029
- Treatment: string;
70030
- });
70031
- }
70032
-
70033
70154
  export declare class ExperimentConfig {
70034
70155
  constructor(props: {
70035
70156
  /** The name of an existing experiment to associate with the trial component. */
@@ -78935,24 +79056,26 @@ export declare class InstanceFleetConfig_SpotResizingSpecification {
78935
79056
  });
78936
79057
  }
78937
79058
 
78938
- export declare class InstanceGroupConfig_AutoScalingPolicy {
79059
+ export declare class InstanceGroupConfig_AppConfiguration {
78939
79060
  constructor(props: {
78940
- Constraints: InstanceGroupConfig_ScalingConstraints;
78941
- Rules: InstanceGroupConfig_ScalingRule[];
79061
+ Classification?: string;
79062
+ ConfigurationProperties?: Record<string, unknown>;
79063
+ Configurations?: InstanceGroupConfig_AppConfiguration[];
78942
79064
  });
78943
79065
  }
78944
79066
 
78945
- export declare class InstanceGroupConfig_Configuration {
79067
+ export declare class InstanceGroupConfig_AutoScalingPolicy {
78946
79068
  constructor(props: {
78947
- Classification?: string;
78948
- ConfigurationProperties?: Record<string, unknown>;
78949
- Configurations?: InstanceGroupConfig_Configuration[];
79069
+ Constraints: InstanceGroupConfig_ScalingConstraints;
79070
+ Rules: InstanceGroupConfig_ScalingRule[];
78950
79071
  });
78951
79072
  }
78952
79073
 
78953
79074
  export declare class InstanceGroupConfig_EbsBlockDeviceConfig {
78954
79075
  constructor(props: {
78955
79076
  VolumeSpecification: InstanceGroupConfig_VolumeSpecification;
79077
+ /** Use of this property can confuse CloudFormation drift detection. The EbsBlockDeviceConfigs read from the system may return a list with one entry per volume, replacing any entry specified in the template with a VolumesPerInstance greater than one by that many entries containing only the VolumeSpecification. Thus to avoid false drift detection, it is recommended to supply repeated entries in EbsBlockDeviceConfigs for any VolumeSpecification which is intended to be repeated and not to use this property.
79078
+ */
78956
79079
  VolumesPerInstance?: number;
78957
79080
  });
78958
79081
  }
@@ -85949,10 +86072,10 @@ export declare class LogAlarm_ScheduleConfiguration {
85949
86072
  constructor(props: {
85950
86073
  /** The expression that defines when the scheduled query runs, e.g. rate(1 minute). */
85951
86074
  ScheduleExpression: string;
85952
- /** The number of seconds into the past to end the query window. */
86075
+ /** The number of seconds into the past to start the query window. Must be a positive value and cannot exceed 2592000 seconds (30 days). */
86076
+ StartTimeOffset: number;
86077
+ /** The number of seconds into the past to end the query window. Must be a non-negative value and cannot exceed 2592000 seconds (30 days). */
85953
86078
  EndTimeOffset?: number;
85954
- /** The number of seconds into the past to start the query window. */
85955
- StartTimeOffset?: number;
85956
86079
  });
85957
86080
  }
85958
86081
 
@@ -85960,14 +86083,16 @@ export declare class LogAlarm_ScheduledQueryConfiguration {
85960
86083
  constructor(props: {
85961
86084
  /** The aggregation expression for the scheduled query, e.g. count(*) or avg(latency) by host. */
85962
86085
  AggregationExpression: string;
85963
- /** The log groups to query. */
85964
- LogGroupIdentifiers: string[];
85965
86086
  /** The query string to execute against the specified log groups. */
85966
86087
  QueryString: string;
85967
86088
  /** The schedule configuration. */
85968
86089
  ScheduleConfiguration: LogAlarm_ScheduleConfiguration;
85969
86090
  /** The ARN of the IAM role that grants permissions to execute the scheduled query. */
85970
86091
  ScheduledQueryRoleARN: string;
86092
+ /** The log groups to query. */
86093
+ LogGroupIdentifiers?: string[];
86094
+ /** A list of key-value pairs to associate with the scheduled query that backs the log alarm. */
86095
+ Tags?: LogAlarm_Tag[];
85971
86096
  });
85972
86097
  }
85973
86098
 
@@ -94660,7 +94785,7 @@ export declare class OnInput {
94660
94785
  export declare class OnlineAbConfigObject {
94661
94786
  constructor(props: {
94662
94787
  ControlTreatmentName?: string;
94663
- TreatmentWeights?: Experiment_TreatmentToWeight[];
94788
+ TreatmentWeights?: EvidentlyExperiment_TreatmentToWeight[];
94664
94789
  });
94665
94790
  }
94666
94791
 
@@ -109455,14 +109580,16 @@ export declare class ScheduledQueryConfiguration {
109455
109580
  constructor(props: {
109456
109581
  /** The aggregation expression for the scheduled query, e.g. count(*) or avg(latency) by host. */
109457
109582
  AggregationExpression: string;
109458
- /** The log groups to query. */
109459
- LogGroupIdentifiers: string[];
109460
109583
  /** The query string to execute against the specified log groups. */
109461
109584
  QueryString: string;
109462
109585
  /** The schedule configuration. */
109463
109586
  ScheduleConfiguration: LogAlarm_ScheduleConfiguration;
109464
109587
  /** The ARN of the IAM role that grants permissions to execute the scheduled query. */
109465
109588
  ScheduledQueryRoleARN: string;
109589
+ /** The log groups to query. */
109590
+ LogGroupIdentifiers?: string[];
109591
+ /** A list of key-value pairs to associate with the scheduled query that backs the log alarm. */
109592
+ Tags?: LogAlarm_Tag[];
109466
109593
  });
109467
109594
  }
109468
109595
 
@@ -127,6 +127,7 @@ export const APSWorkspace = createResource("AWS::APS::Workspace", "aws", {"Works
127
127
  export const Archive = createResource("AWS::Events::Archive", "aws", {"Arn":"Arn"});
128
128
  export const ARCRegionSwitchPlan = createResource("AWS::ARCRegionSwitch::Plan", "aws", {"Arn":"Arn","Owner":"Owner","Version":"Version","HealthChecksForPlan":"HealthChecksForPlan","Route53HealthChecks":"Route53HealthChecks","PlanHealthChecks":"PlanHealthChecks"});
129
129
  export const Assessment = createResource("AWS::AuditManager::Assessment", "aws", {"AssessmentId":"AssessmentId","Arn":"Arn","CreationTime":"CreationTime"});
130
+ export const AssessmentFramework = createResource("AWS::AuditManager::AssessmentFramework", "aws", {"Arn":"Arn","FrameworkId":"FrameworkId","Type":"Type","CreatedAt":"CreatedAt","LastUpdatedAt":"LastUpdatedAt","CreatedBy":"CreatedBy","LastUpdatedBy":"LastUpdatedBy"});
130
131
  export const AssessmentTarget = createResource("AWS::Inspector::AssessmentTarget", "aws", {"Arn":"Arn"});
131
132
  export const AssessmentTemplate = createResource("AWS::Inspector::AssessmentTemplate", "aws", {"Arn":"Arn"});
132
133
  export const AssetModel = createResource("AWS::IoTSiteWise::AssetModel", "aws", {"AssetModelArn":"AssetModelArn","AssetModelId":"AssetModelId","AssetModelProperties_Item_Id":"AssetModelProperties.*.Id","AssetModelProperties_Item_Type_Transform_Variables_Item_Value_PropertyId":"AssetModelProperties.*.Type.Transform.Variables.*.Value.PropertyId","AssetModelProperties_Item_Type_Metric_Variables_Item_Value_PropertyId":"AssetModelProperties.*.Type.Metric.Variables.*.Value.PropertyId","AssetModelHierarchies_Item_Id":"AssetModelHierarchies.*.Id","AssetModelCompositeModels_Item_Id":"AssetModelCompositeModels.*.Id","AssetModelCompositeModels_Item_CompositeModelProperties_Item_Id":"AssetModelCompositeModels.*.CompositeModelProperties.*.Id","AssetModelCompositeModels_Item_CompositeModelProperties_Item_Type_Transform_Variables_Item_Value_PropertyId":"AssetModelCompositeModels.*.CompositeModelProperties.*.Type.Transform.Variables.*.Value.PropertyId","AssetModelCompositeModels_Item_CompositeModelProperties_Item_Type_Metric_Variables_Item_Value_PropertyId":"AssetModelCompositeModels.*.CompositeModelProperties.*.Type.Metric.Variables.*.Value.PropertyId"});
@@ -248,6 +249,7 @@ export const CodeBuildProject = createResource("AWS::CodeBuild::Project", "aws",
248
249
  export const CodeCommitRepository = createResource("AWS::CodeCommit::Repository", "aws", {"CloneUrlHttp":"CloneUrlHttp","Id":"Id","Name":"Name","CloneUrlSsh":"CloneUrlSsh","Arn":"Arn"});
249
250
  export const CodeConnectionsConnection = createResource("AWS::CodeConnections::Connection", "aws", {"ConnectionArn":"ConnectionArn","ConnectionStatus":"ConnectionStatus","OwnerAccountId":"OwnerAccountId"});
250
251
  export const CodeDeployApplication = createResource("AWS::CodeDeploy::Application", "aws", {});
252
+ export const CodeInterpreter = createResource("AWS::BedrockAgentCore::CodeInterpreter", "aws", {"CodeInterpreterArn":"CodeInterpreterArn","CodeInterpreterId":"CodeInterpreterId","Status":"Status"});
251
253
  export const CodeInterpreterCustom = createResource("AWS::BedrockAgentCore::CodeInterpreterCustom", "aws", {"CodeInterpreterId":"CodeInterpreterId","CodeInterpreterArn":"CodeInterpreterArn","Status":"Status","FailureReason":"FailureReason","CreatedAt":"CreatedAt","LastUpdatedAt":"LastUpdatedAt"});
252
254
  export const CodePipelinePipeline = createResource("AWS::CodePipeline::Pipeline", "aws", {"Version":"Version","Arn":"Arn"});
253
255
  export const CodeRepository = createResource("AWS::SageMaker::CodeRepository", "aws", {"Id":"Id"});
@@ -534,11 +536,11 @@ export const EventsEndpoint = createResource("AWS::Events::Endpoint", "aws", {"A
534
536
  export const EventSourceMapping = createResource("AWS::Lambda::EventSourceMapping", "aws", {"Id":"Id","EventSourceMappingArn":"EventSourceMappingArn"});
535
537
  export const EventTrigger = createResource("AWS::CustomerProfiles::EventTrigger", "aws", {"CreatedAt":"CreatedAt","LastUpdatedAt":"LastUpdatedAt"});
536
538
  export const EventType = createResource("AWS::FraudDetector::EventType", "aws", {"Arn":"Arn","CreatedTime":"CreatedTime","LastUpdatedTime":"LastUpdatedTime","EventVariables_Item_Arn":"EventVariables.*.Arn","EventVariables_Item_CreatedTime":"EventVariables.*.CreatedTime","EventVariables_Item_LastUpdatedTime":"EventVariables.*.LastUpdatedTime","Labels_Item_Arn":"Labels.*.Arn","Labels_Item_CreatedTime":"Labels.*.CreatedTime","Labels_Item_LastUpdatedTime":"Labels.*.LastUpdatedTime","EntityTypes_Item_Arn":"EntityTypes.*.Arn","EntityTypes_Item_CreatedTime":"EntityTypes.*.CreatedTime","EntityTypes_Item_LastUpdatedTime":"EntityTypes.*.LastUpdatedTime"});
539
+ export const EvidentlyExperiment = createResource("AWS::Evidently::Experiment", "aws", {"Arn":"Arn"});
537
540
  export const EvidentlyProject = createResource("AWS::Evidently::Project", "aws", {"Arn":"Arn"});
538
541
  export const EvidentlySegment = createResource("AWS::Evidently::Segment", "aws", {"Arn":"Arn"});
539
542
  export const EVSEnvironment = createResource("AWS::EVS::Environment", "aws", {"EnvironmentId":"EnvironmentId","Checks":"Checks","EnvironmentArn":"EnvironmentArn","Credentials":"Credentials","EnvironmentState":"EnvironmentState","StateDetails":"StateDetails","CreatedAt":"CreatedAt","ModifiedAt":"ModifiedAt"});
540
543
  export const ExecutionPlan = createResource("AWS::KendraRanking::ExecutionPlan", "aws", {"Id":"Id","Arn":"Arn"});
541
- export const Experiment = createResource("AWS::Evidently::Experiment", "aws", {"Arn":"Arn"});
542
544
  export const ExperimentTemplate = createResource("AWS::FIS::ExperimentTemplate", "aws", {"Id":"Id"});
543
545
  export const Export = createResource("AWS::BCMDataExports::Export", "aws", {"ExportArn":"ExportArn","Export_ExportArn":"Export.ExportArn"});
544
546
  export const ExpressGatewayService = createResource("AWS::ECS::ExpressGatewayService", "aws", {"ServiceArn":"ServiceArn","ActiveConfigurations":"ActiveConfigurations","Status":"Status","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","Endpoint":"Endpoint","ECSManagedResourceArns":"ECSManagedResourceArns","ECSManagedResourceArns_ServiceSecurityGroups":"ECSManagedResourceArns.ServiceSecurityGroups","ECSManagedResourceArns_AutoScaling":"ECSManagedResourceArns.AutoScaling","ECSManagedResourceArns_AutoScaling_ScalableTarget":"ECSManagedResourceArns.AutoScaling.ScalableTarget","ECSManagedResourceArns_AutoScaling_ApplicationAutoScalingPolicies":"ECSManagedResourceArns.AutoScaling.ApplicationAutoScalingPolicies","ECSManagedResourceArns_LogGroups":"ECSManagedResourceArns.LogGroups","ECSManagedResourceArns_MetricAlarms":"ECSManagedResourceArns.MetricAlarms","ECSManagedResourceArns_IngressPath":"ECSManagedResourceArns.IngressPath","ECSManagedResourceArns_IngressPath_CertificateArn":"ECSManagedResourceArns.IngressPath.CertificateArn","ECSManagedResourceArns_IngressPath_LoadBalancerSecurityGroups":"ECSManagedResourceArns.IngressPath.LoadBalancerSecurityGroups","ECSManagedResourceArns_IngressPath_ListenerRuleArn":"ECSManagedResourceArns.IngressPath.ListenerRuleArn","ECSManagedResourceArns_IngressPath_ListenerArn":"ECSManagedResourceArns.IngressPath.ListenerArn","ECSManagedResourceArns_IngressPath_LoadBalancerArn":"ECSManagedResourceArns.IngressPath.LoadBalancerArn","ECSManagedResourceArns_IngressPath_TargetGroupArns":"ECSManagedResourceArns.IngressPath.TargetGroupArns"});
@@ -688,7 +690,7 @@ export const Instance = createResource("AWS::EC2::Instance", "aws", {"InstanceId
688
690
  export const InstanceAccessControlAttributeConfiguration = createResource("AWS::SSO::InstanceAccessControlAttributeConfiguration", "aws", {});
689
691
  export const InstanceConnectEndpoint = createResource("AWS::EC2::InstanceConnectEndpoint", "aws", {"Id":"Id","AvailabilityZone":"AvailabilityZone","AvailabilityZoneId":"AvailabilityZoneId","CreatedAt":"CreatedAt","InstanceConnectEndpointArn":"InstanceConnectEndpointArn","NetworkInterfaceIds":"NetworkInterfaceIds","OwnerId":"OwnerId","PublicDnsNames":"PublicDnsNames","State":"State","StateMessage":"StateMessage","VpcId":"VpcId"});
690
692
  export const InstanceFleetConfig = createResource("AWS::EMR::InstanceFleetConfig", "aws", {"Id":"Id"});
691
- export const InstanceGroupConfig = createResource("AWS::EMR::InstanceGroupConfig", "aws", {"Id":"Id"});
693
+ export const InstanceGroupConfig = createResource("AWS::EMR::InstanceGroupConfig", "aws", {"InstanceGroupId":"InstanceGroupId"});
692
694
  export const InstanceProfile = createResource("AWS::IAM::InstanceProfile", "aws", {"Arn":"Arn"});
693
695
  export const InstanceSnapshot = createResource("AWS::Lightsail::InstanceSnapshot", "aws", {"Arn":"Arn","IsFromAutoSnapshot":"IsFromAutoSnapshot","Location":"Location","FromInstanceName":"FromInstanceName","FromInstanceArn":"FromInstanceArn","ResourceType":"ResourceType","SizeInGb":"SizeInGb","State":"State","SupportCode":"SupportCode"});
694
696
  export const InstanceStorageConfig = createResource("AWS::Connect::InstanceStorageConfig", "aws", {"AssociationId":"AssociationId"});
@@ -1268,6 +1270,7 @@ export const SageMakerCluster = createResource("AWS::SageMaker::Cluster", "aws",
1268
1270
  export const SageMakerDevice = createResource("AWS::SageMaker::Device", "aws", {});
1269
1271
  export const SageMakerDomain = createResource("AWS::SageMaker::Domain", "aws", {"DomainArn":"DomainArn","Url":"Url","DomainId":"DomainId","HomeEfsFileSystemId":"HomeEfsFileSystemId","SecurityGroupIdForDomainBoundary":"SecurityGroupIdForDomainBoundary","SingleSignOnManagedApplicationInstanceId":"SingleSignOnManagedApplicationInstanceId","SingleSignOnApplicationArn":"SingleSignOnApplicationArn"});
1270
1272
  export const SageMakerEndpoint = createResource("AWS::SageMaker::Endpoint", "aws", {"EndpointArn":"EndpointArn","EndpointName":"EndpointName"});
1273
+ export const SageMakerExperiment = createResource("AWS::SageMaker::Experiment", "aws", {"Arn":"Arn","CreationTime":"CreationTime","LastModifiedTime":"LastModifiedTime"});
1271
1274
  export const SageMakerHub = createResource("AWS::SageMaker::Hub", "aws", {"HubArn":"HubArn","HubStatus":"HubStatus","CreationTime":"CreationTime","LastModifiedTime":"LastModifiedTime"});
1272
1275
  export const SageMakerImage = createResource("AWS::SageMaker::Image", "aws", {"ImageArn":"ImageArn"});
1273
1276
  export const SageMakerModel = createResource("AWS::SageMaker::Model", "aws", {"ModelArn":"ModelArn"});
@@ -1985,6 +1988,7 @@ export const AppConfigDeployment_Tag = createProperty("AWS::AppConfig::Deploymen
1985
1988
  export const AppConfigEnvironment_Monitor = createProperty("AWS::AppConfig::Environment.Monitor", "aws");
1986
1989
  export const AppConfigEnvironment_Tag = createProperty("AWS::AppConfig::Environment.Tag", "aws");
1987
1990
  export const AppConfigResourceObject = createProperty("AWS::Evidently::Project.AppConfigResourceObject", "aws");
1991
+ export const AppConfiguration = createProperty("AWS::EMR::InstanceGroupConfig.AppConfiguration", "aws");
1988
1992
  export const AppCookieStickinessPolicy = createProperty("AWS::ElasticLoadBalancing::LoadBalancer.AppCookieStickinessPolicy", "aws");
1989
1993
  export const AppFlowConnector_ConnectorProvisioningConfig = createProperty("AWS::AppFlow::Connector.ConnectorProvisioningConfig", "aws");
1990
1994
  export const AppFlowConnector_LambdaConnectorProvisioningConfig = createProperty("AWS::AppFlow::Connector.LambdaConnectorProvisioningConfig", "aws");
@@ -2219,6 +2223,9 @@ export const Assessment_Delegation = createProperty("AWS::AuditManager::Assessme
2219
2223
  export const Assessment_Role = createProperty("AWS::AuditManager::Assessment.Role", "aws");
2220
2224
  export const Assessment_Scope = createProperty("AWS::AuditManager::Assessment.Scope", "aws");
2221
2225
  export const Assessment_Tag = createProperty("AWS::AuditManager::Assessment.Tag", "aws");
2226
+ export const AssessmentFramework_ControlSet = createProperty("AWS::AuditManager::AssessmentFramework.ControlSet", "aws");
2227
+ export const AssessmentFramework_ControlSetControl = createProperty("AWS::AuditManager::AssessmentFramework.ControlSetControl", "aws");
2228
+ export const AssessmentFramework_Tag = createProperty("AWS::AuditManager::AssessmentFramework.Tag", "aws");
2222
2229
  export const AssessmentReportsDestination = createProperty("AWS::AuditManager::Assessment.AssessmentReportsDestination", "aws");
2223
2230
  export const AssessmentTemplate_Tag = createProperty("AWS::Inspector::AssessmentTemplate.Tag", "aws");
2224
2231
  export const AssetHierarchy = createProperty("AWS::IoTSiteWise::Asset.AssetHierarchy", "aws");
@@ -3473,6 +3480,8 @@ export const ControlInputParameter = createProperty("AWS::Backup::Framework.Cont
3473
3480
  export const ControlPanel_Tag = createProperty("AWS::Route53RecoveryControl::ControlPanel.Tag", "aws");
3474
3481
  export const ControlPlanePlacement = createProperty("AWS::EKS::Cluster.ControlPlanePlacement", "aws");
3475
3482
  export const ControlPlaneScalingConfig = createProperty("AWS::EKS::Cluster.ControlPlaneScalingConfig", "aws");
3483
+ export const ControlSet = createProperty("AWS::AuditManager::AssessmentFramework.ControlSet", "aws");
3484
+ export const ControlSetControl = createProperty("AWS::AuditManager::AssessmentFramework.ControlSetControl", "aws");
3476
3485
  export const CookieObject = createProperty("AWS::Lightsail::Distribution.CookieObject", "aws");
3477
3486
  export const CookieSpecification = createProperty("AWS::WorkSpacesWeb::UserSettings.CookieSpecification", "aws");
3478
3487
  export const CookieSynchronizationConfiguration = createProperty("AWS::WorkSpacesWeb::UserSettings.CookieSynchronizationConfiguration", "aws");
@@ -4836,6 +4845,12 @@ export const EventType_EntityType = createProperty("AWS::FraudDetector::EventTyp
4836
4845
  export const EventType_EventVariable = createProperty("AWS::FraudDetector::EventType.EventVariable", "aws");
4837
4846
  export const EventType_Label = createProperty("AWS::FraudDetector::EventType.Label", "aws");
4838
4847
  export const EventType_Tag = createProperty("AWS::FraudDetector::EventType.Tag", "aws");
4848
+ export const EvidentlyExperiment_MetricGoalObject = createProperty("AWS::Evidently::Experiment.MetricGoalObject", "aws");
4849
+ export const EvidentlyExperiment_OnlineAbConfigObject = createProperty("AWS::Evidently::Experiment.OnlineAbConfigObject", "aws");
4850
+ export const EvidentlyExperiment_RunningStatusObject = createProperty("AWS::Evidently::Experiment.RunningStatusObject", "aws");
4851
+ export const EvidentlyExperiment_Tag = createProperty("AWS::Evidently::Experiment.Tag", "aws");
4852
+ export const EvidentlyExperiment_TreatmentObject = createProperty("AWS::Evidently::Experiment.TreatmentObject", "aws");
4853
+ export const EvidentlyExperiment_TreatmentToWeight = createProperty("AWS::Evidently::Experiment.TreatmentToWeight", "aws");
4839
4854
  export const EvidentlyProject_AppConfigResourceObject = createProperty("AWS::Evidently::Project.AppConfigResourceObject", "aws");
4840
4855
  export const EvidentlyProject_DataDeliveryObject = createProperty("AWS::Evidently::Project.DataDeliveryObject", "aws");
4841
4856
  export const EvidentlyProject_S3Destination = createProperty("AWS::Evidently::Project.S3Destination", "aws");
@@ -4856,12 +4871,6 @@ export const ExecutionPlan_CapacityUnitsConfiguration = createProperty("AWS::Ken
4856
4871
  export const ExecutionProperty = createProperty("AWS::Glue::Job.ExecutionProperty", "aws");
4857
4872
  export const ExecutionStatusObject = createProperty("AWS::Evidently::Launch.ExecutionStatusObject", "aws");
4858
4873
  export const ExecutiveSummaryOption = createProperty("AWS::QuickSight::Dashboard.ExecutiveSummaryOption", "aws");
4859
- export const Experiment_MetricGoalObject = createProperty("AWS::Evidently::Experiment.MetricGoalObject", "aws");
4860
- export const Experiment_OnlineAbConfigObject = createProperty("AWS::Evidently::Experiment.OnlineAbConfigObject", "aws");
4861
- export const Experiment_RunningStatusObject = createProperty("AWS::Evidently::Experiment.RunningStatusObject", "aws");
4862
- export const Experiment_Tag = createProperty("AWS::Evidently::Experiment.Tag", "aws");
4863
- export const Experiment_TreatmentObject = createProperty("AWS::Evidently::Experiment.TreatmentObject", "aws");
4864
- export const Experiment_TreatmentToWeight = createProperty("AWS::Evidently::Experiment.TreatmentToWeight", "aws");
4865
4874
  export const ExperimentConfig = createProperty("AWS::SageMaker::ProcessingJob.ExperimentConfig", "aws");
4866
4875
  export const ExperimentTemplate_ExperimentTemplateExperimentOptions = createProperty("AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentOptions", "aws");
4867
4876
  export const ExperimentTemplate_ExperimentTemplateExperimentReportConfiguration = createProperty("AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentReportConfiguration", "aws");
@@ -5823,8 +5832,8 @@ export const InstanceFleetConfig_OnDemandProvisioningSpecification = createPrope
5823
5832
  export const InstanceFleetConfig_OnDemandResizingSpecification = createProperty("AWS::EMR::InstanceFleetConfig.OnDemandResizingSpecification", "aws");
5824
5833
  export const InstanceFleetConfig_SpotProvisioningSpecification = createProperty("AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification", "aws");
5825
5834
  export const InstanceFleetConfig_SpotResizingSpecification = createProperty("AWS::EMR::InstanceFleetConfig.SpotResizingSpecification", "aws");
5835
+ export const InstanceGroupConfig_AppConfiguration = createProperty("AWS::EMR::InstanceGroupConfig.AppConfiguration", "aws");
5826
5836
  export const InstanceGroupConfig_AutoScalingPolicy = createProperty("AWS::EMR::InstanceGroupConfig.AutoScalingPolicy", "aws");
5827
- export const InstanceGroupConfig_Configuration = createProperty("AWS::EMR::InstanceGroupConfig.Configuration", "aws");
5828
5837
  export const InstanceGroupConfig_EbsBlockDeviceConfig = createProperty("AWS::EMR::InstanceGroupConfig.EbsBlockDeviceConfig", "aws");
5829
5838
  export const InstanceGroupConfig_EbsConfiguration = createProperty("AWS::EMR::InstanceGroupConfig.EbsConfiguration", "aws");
5830
5839
  export const InstanceGroupConfig_ScalingAction = createProperty("AWS::EMR::InstanceGroupConfig.ScalingAction", "aws");