@intentius/chant-lexicon-aws 0.18.17 → 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.
@@ -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;
@@ -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. */
@@ -43721,6 +43793,31 @@ export declare class Assessment_Tag {
43721
43793
  });
43722
43794
  }
43723
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
+
43724
43821
  export declare class AssessmentReportsDestination {
43725
43822
  constructor(props: {
43726
43823
  Destination?: string;
@@ -56334,6 +56431,22 @@ export declare class ControlPlaneScalingConfig {
56334
56431
  });
56335
56432
  }
56336
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
+
56337
56450
  export declare class CookieObject {
56338
56451
  constructor(props: {
56339
56452
  /** The specific cookies to forward to your distribution's origin. */
@@ -69810,6 +69923,65 @@ export declare class EventType_Tag {
69810
69923
  });
69811
69924
  }
69812
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
+
69813
69985
  export declare class EvidentlyProject_AppConfigResourceObject {
69814
69986
  constructor(props: {
69815
69987
  ApplicationId: string;
@@ -69979,65 +70151,6 @@ export declare class ExecutiveSummaryOption {
69979
70151
  });
69980
70152
  }
69981
70153
 
69982
- export declare class Experiment_MetricGoalObject {
69983
- constructor(props: {
69984
- DesiredChange: "DECREASE" | "INCREASE";
69985
- /** The JSON path to reference the entity id in the event. */
69986
- EntityIdKey: string;
69987
- MetricName: string;
69988
- /** The JSON path to reference the numerical metric value in the event. */
69989
- ValueKey: string;
69990
- /** 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. */
69991
- EventPattern?: string;
69992
- UnitLabel?: string;
69993
- });
69994
- }
69995
-
69996
- export declare class Experiment_OnlineAbConfigObject {
69997
- constructor(props: {
69998
- ControlTreatmentName?: string;
69999
- TreatmentWeights?: Experiment_TreatmentToWeight[];
70000
- });
70001
- }
70002
-
70003
- export declare class Experiment_RunningStatusObject {
70004
- constructor(props: {
70005
- /** Provide the analysis Completion time for an experiment */
70006
- AnalysisCompleteTime?: string;
70007
- /** Provide CANCELLED or COMPLETED desired state when stopping an experiment */
70008
- DesiredState?: string;
70009
- /** Reason is a required input for stopping the experiment */
70010
- Reason?: string;
70011
- /** Provide START or STOP action to apply on an experiment */
70012
- Status?: string;
70013
- });
70014
- }
70015
-
70016
- export declare class Experiment_Tag {
70017
- constructor(props: {
70018
- /** 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 -. */
70019
- Key: string;
70020
- /** 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 -. */
70021
- Value: string;
70022
- });
70023
- }
70024
-
70025
- export declare class Experiment_TreatmentObject {
70026
- constructor(props: {
70027
- Feature: string;
70028
- TreatmentName: string;
70029
- Variation: string;
70030
- Description?: string;
70031
- });
70032
- }
70033
-
70034
- export declare class Experiment_TreatmentToWeight {
70035
- constructor(props: {
70036
- SplitWeight: number;
70037
- Treatment: string;
70038
- });
70039
- }
70040
-
70041
70154
  export declare class ExperimentConfig {
70042
70155
  constructor(props: {
70043
70156
  /** The name of an existing experiment to associate with the trial component. */
@@ -94672,7 +94785,7 @@ export declare class OnInput {
94672
94785
  export declare class OnlineAbConfigObject {
94673
94786
  constructor(props: {
94674
94787
  ControlTreatmentName?: string;
94675
- TreatmentWeights?: Experiment_TreatmentToWeight[];
94788
+ TreatmentWeights?: EvidentlyExperiment_TreatmentToWeight[];
94676
94789
  });
94677
94790
  }
94678
94791
 
@@ -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"});
@@ -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"});
@@ -2220,6 +2223,9 @@ export const Assessment_Delegation = createProperty("AWS::AuditManager::Assessme
2220
2223
  export const Assessment_Role = createProperty("AWS::AuditManager::Assessment.Role", "aws");
2221
2224
  export const Assessment_Scope = createProperty("AWS::AuditManager::Assessment.Scope", "aws");
2222
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");
2223
2229
  export const AssessmentReportsDestination = createProperty("AWS::AuditManager::Assessment.AssessmentReportsDestination", "aws");
2224
2230
  export const AssessmentTemplate_Tag = createProperty("AWS::Inspector::AssessmentTemplate.Tag", "aws");
2225
2231
  export const AssetHierarchy = createProperty("AWS::IoTSiteWise::Asset.AssetHierarchy", "aws");
@@ -3474,6 +3480,8 @@ export const ControlInputParameter = createProperty("AWS::Backup::Framework.Cont
3474
3480
  export const ControlPanel_Tag = createProperty("AWS::Route53RecoveryControl::ControlPanel.Tag", "aws");
3475
3481
  export const ControlPlanePlacement = createProperty("AWS::EKS::Cluster.ControlPlanePlacement", "aws");
3476
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");
3477
3485
  export const CookieObject = createProperty("AWS::Lightsail::Distribution.CookieObject", "aws");
3478
3486
  export const CookieSpecification = createProperty("AWS::WorkSpacesWeb::UserSettings.CookieSpecification", "aws");
3479
3487
  export const CookieSynchronizationConfiguration = createProperty("AWS::WorkSpacesWeb::UserSettings.CookieSynchronizationConfiguration", "aws");
@@ -4837,6 +4845,12 @@ export const EventType_EntityType = createProperty("AWS::FraudDetector::EventTyp
4837
4845
  export const EventType_EventVariable = createProperty("AWS::FraudDetector::EventType.EventVariable", "aws");
4838
4846
  export const EventType_Label = createProperty("AWS::FraudDetector::EventType.Label", "aws");
4839
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");
4840
4854
  export const EvidentlyProject_AppConfigResourceObject = createProperty("AWS::Evidently::Project.AppConfigResourceObject", "aws");
4841
4855
  export const EvidentlyProject_DataDeliveryObject = createProperty("AWS::Evidently::Project.DataDeliveryObject", "aws");
4842
4856
  export const EvidentlyProject_S3Destination = createProperty("AWS::Evidently::Project.S3Destination", "aws");
@@ -4857,12 +4871,6 @@ export const ExecutionPlan_CapacityUnitsConfiguration = createProperty("AWS::Ken
4857
4871
  export const ExecutionProperty = createProperty("AWS::Glue::Job.ExecutionProperty", "aws");
4858
4872
  export const ExecutionStatusObject = createProperty("AWS::Evidently::Launch.ExecutionStatusObject", "aws");
4859
4873
  export const ExecutiveSummaryOption = createProperty("AWS::QuickSight::Dashboard.ExecutiveSummaryOption", "aws");
4860
- export const Experiment_MetricGoalObject = createProperty("AWS::Evidently::Experiment.MetricGoalObject", "aws");
4861
- export const Experiment_OnlineAbConfigObject = createProperty("AWS::Evidently::Experiment.OnlineAbConfigObject", "aws");
4862
- export const Experiment_RunningStatusObject = createProperty("AWS::Evidently::Experiment.RunningStatusObject", "aws");
4863
- export const Experiment_Tag = createProperty("AWS::Evidently::Experiment.Tag", "aws");
4864
- export const Experiment_TreatmentObject = createProperty("AWS::Evidently::Experiment.TreatmentObject", "aws");
4865
- export const Experiment_TreatmentToWeight = createProperty("AWS::Evidently::Experiment.TreatmentToWeight", "aws");
4866
4874
  export const ExperimentConfig = createProperty("AWS::SageMaker::ProcessingJob.ExperimentConfig", "aws");
4867
4875
  export const ExperimentTemplate_ExperimentTemplateExperimentOptions = createProperty("AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentOptions", "aws");
4868
4876
  export const ExperimentTemplate_ExperimentTemplateExperimentReportConfiguration = createProperty("AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentReportConfiguration", "aws");