@awboost/cfn-resource-types 0.1.527 → 0.1.529

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.
@@ -15,11 +15,11 @@ export type AutoScalingAutoScalingGroupProperties = {
15
15
  */
16
16
  AutoScalingGroupName?: string;
17
17
  /**
18
- * The instance capacity distribution across Availability Zones.
18
+ * The EC2 instance capacity distribution across Availability Zones for the Auto Scaling group.
19
19
  */
20
20
  AvailabilityZoneDistribution?: AvailabilityZoneDistribution;
21
21
  /**
22
- * The Availability Zone impairment policy.
22
+ * The Availability Zone impairment policy for the Auto Scaling group.
23
23
  */
24
24
  AvailabilityZoneImpairmentPolicy?: AvailabilityZoneImpairmentPolicy;
25
25
  /**
@@ -31,7 +31,7 @@ export type AutoScalingAutoScalingGroupProperties = {
31
31
  */
32
32
  CapacityRebalance?: boolean;
33
33
  /**
34
- * The capacity reservation specification.
34
+ * The capacity reservation specification for the Auto Scaling group.
35
35
  */
36
36
  CapacityReservationSpecification?: CapacityReservationSpecification;
37
37
  /**
@@ -80,6 +80,9 @@ export type AutoScalingAutoScalingGroupProperties = {
80
80
  If you specify ``LaunchTemplate``, ``MixedInstancesPolicy``, or ``LaunchConfigurationName``, don't specify ``InstanceId``.
81
81
  */
82
82
  InstanceId?: string;
83
+ /**
84
+ * The instance lifecycle policy for the Auto Scaling group.
85
+ */
83
86
  InstanceLifecyclePolicy?: InstanceLifecyclePolicy;
84
87
  /**
85
88
  * An instance maintenance policy. For more information, see [Set instance maintenance policy](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
@@ -317,9 +320,14 @@ export type CpuPerformanceFactorRequest = {
317
320
  };
318
321
  /**
319
322
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.InstanceLifecyclePolicy`.
323
+ * The instance lifecycle policy for the Auto Scaling group. This policy controls instance behavior when an instance transitions through its lifecycle states. Configure retention triggers to specify when instances should move to a ``Retained`` state instead of automatic termination.
324
+ For more information, see [Control instance retention with instance lifecycle policies](https://docs.aws.amazon.com/autoscaling/ec2/userguide/instance-lifecycle-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
320
325
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancelifecyclepolicy.html}
321
326
  */
322
327
  export type InstanceLifecyclePolicy = {
328
+ /**
329
+ * Specifies the conditions that trigger instance retention behavior. These triggers determine when instances should move to a ``Retained`` state instead of automatic termination. This allows you to maintain control over instance management when lifecycles transition and operations fail.
330
+ */
323
331
  RetentionTriggers?: RetentionTriggers;
324
332
  };
325
333
  /**
@@ -592,6 +600,13 @@ export type LaunchTemplate = {
592
600
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html}
593
601
  */
594
602
  export type LaunchTemplateOverrides = {
603
+ /**
604
+ * The ID of the Amazon Machine Image (AMI) to use for instances launched with this override. When using Instance Refresh with ``ReplaceRootVolume`` strategy, this specifies the AMI for root volume replacement operations.
605
+ For ``ReplaceRootVolume`` operations:
606
+ + All overrides in the ``MixedInstancesPolicy`` must specify an ImageId
607
+ + The AMI must contain only a single root volume
608
+ + Root volume replacement doesn't support multi-volume AMIs
609
+ */
595
610
  ImageId?: string;
596
611
  /**
597
612
  * The instance requirements. Amazon EC2 Auto Scaling uses your specified requirements to identify instance types. Then, it uses your On-Demand and Spot allocation strategies to launch instances from these instance types.
@@ -860,9 +875,15 @@ export type PerformanceFactorReferenceRequest = {
860
875
  };
861
876
  /**
862
877
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.RetentionTriggers`.
878
+ * Defines the specific triggers that cause instances to be retained in a Retained state rather than terminated. Each trigger corresponds to a different failure scenario during the instance lifecycle. This allows fine-grained control over when to preserve instances for manual intervention.
863
879
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-retentiontriggers.html}
864
880
  */
865
881
  export type RetentionTriggers = {
882
+ /**
883
+ * Specifies the action when a termination lifecycle hook is abandoned due to failure, timeout, or explicit abandonment (calling CompleteLifecycleAction).
884
+ Set to ``Retain`` to move instances to a ``Retained`` state. Set to ``Terminate`` for default termination behavior.
885
+ Retained instances don't count toward desired capacity and remain until you call ``TerminateInstanceInAutoScalingGroup``.
886
+ */
866
887
  TerminateHookAbandon?: string;
867
888
  };
868
889
  /**
@@ -33,6 +33,7 @@ export type BackupPlanResourceType = {
33
33
  AdvancedBackupSettings?: AdvancedBackupSettingResourceType[];
34
34
  BackupPlanName: string;
35
35
  BackupPlanRule: BackupRuleResourceType[];
36
+ ScanSettings?: ScanSettingResourceType[];
36
37
  };
37
38
  /**
38
39
  * Type definition for `AWS::Backup::BackupPlan.BackupRuleResourceType`.
@@ -46,6 +47,7 @@ export type BackupRuleResourceType = {
46
47
  Lifecycle?: LifecycleResourceType;
47
48
  RecoveryPointTags?: Record<string, string>;
48
49
  RuleName: string;
50
+ ScanActions?: ScanActionResourceType[];
49
51
  ScheduleExpression?: string;
50
52
  ScheduleExpressionTimezone?: string;
51
53
  StartWindowMinutes?: number;
@@ -76,6 +78,33 @@ export type LifecycleResourceType = {
76
78
  MoveToColdStorageAfterDays?: number;
77
79
  OptInToArchiveForSupportedResources?: boolean;
78
80
  };
81
+ /**
82
+ * Type definition for `AWS::Backup::BackupPlan.MalwareScanner`.
83
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-malwarescanner.html}
84
+ */
85
+ export type MalwareScanner = "GUARDDUTY";
86
+ /**
87
+ * Type definition for `AWS::Backup::BackupPlan.ScanActionResourceType`.
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scanactionresourcetype.html}
89
+ */
90
+ export type ScanActionResourceType = {
91
+ MalwareScanner?: MalwareScanner;
92
+ ScanMode?: ScanMode;
93
+ };
94
+ /**
95
+ * Type definition for `AWS::Backup::BackupPlan.ScanMode`.
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scanmode.html}
97
+ */
98
+ export type ScanMode = "FULL_SCAN" | "INCREMENTAL_SCAN";
99
+ /**
100
+ * Type definition for `AWS::Backup::BackupPlan.ScanSettingResourceType`.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scansettingresourcetype.html}
102
+ */
103
+ export type ScanSettingResourceType = {
104
+ MalwareScanner?: MalwareScanner;
105
+ ResourceTypes?: string[];
106
+ ScannerRoleArn?: string;
107
+ };
79
108
  /**
80
109
  * Resource Type definition for AWS::Backup::BackupPlan
81
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html}
@@ -0,0 +1,39 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::Backup::TieringConfiguration
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html}
6
+ */
7
+ export type BackupTieringConfigurationProperties = {
8
+ BackupVaultName: string;
9
+ ResourceSelection: ResourceSelection[];
10
+ TieringConfigurationName: string;
11
+ TieringConfigurationTags?: Record<string, string>;
12
+ };
13
+ /**
14
+ * Attribute type definition for `AWS::Backup::TieringConfiguration`.
15
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#aws-resource-backup-tieringconfiguration-return-values}
16
+ */
17
+ export type BackupTieringConfigurationAttributes = {
18
+ CreationTime: string;
19
+ LastUpdatedTime: string;
20
+ TieringConfigurationArn: string;
21
+ };
22
+ /**
23
+ * Type definition for `AWS::Backup::TieringConfiguration.ResourceSelection`.
24
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-tieringconfiguration-resourceselection.html}
25
+ */
26
+ export type ResourceSelection = {
27
+ ResourceType: string;
28
+ Resources: string[];
29
+ TieringDownSettingsInDays: number;
30
+ };
31
+ /**
32
+ * Resource Type definition for AWS::Backup::TieringConfiguration
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html}
34
+ */
35
+ export declare class BackupTieringConfiguration extends $Resource<"AWS::Backup::TieringConfiguration", BackupTieringConfigurationProperties, BackupTieringConfigurationAttributes> {
36
+ static readonly Type = "AWS::Backup::TieringConfiguration";
37
+ constructor(logicalId: string, properties: BackupTieringConfigurationProperties, options?: $ResourceOptions);
38
+ }
39
+ //# sourceMappingURL=AWS-Backup-TieringConfiguration.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Backup::TieringConfiguration
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html}
5
+ */
6
+ export class BackupTieringConfiguration extends $Resource {
7
+ static Type = "AWS::Backup::TieringConfiguration";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, BackupTieringConfiguration.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Backup-TieringConfiguration.js.map
@@ -9,7 +9,7 @@ export type BedrockAgentCoreGatewayTargetProperties = {
9
9
  * @minLength `1`
10
10
  * @maxLength `1`
11
11
  */
12
- CredentialProviderConfigurations: CredentialProviderConfiguration[];
12
+ CredentialProviderConfigurations?: CredentialProviderConfiguration[];
13
13
  /**
14
14
  * @minLength `1`
15
15
  * @maxLength `200`
@@ -48,6 +48,41 @@ export type BedrockAgentCoreGatewayTargetAttributes = {
48
48
  TargetId: string;
49
49
  UpdatedAt: string;
50
50
  };
51
+ /**
52
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayTargetConfiguration`.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration.html}
54
+ */
55
+ export type ApiGatewayTargetConfiguration = {
56
+ ApiGatewayToolConfiguration: ApiGatewayToolConfiguration;
57
+ RestApiId: string;
58
+ Stage: string;
59
+ };
60
+ /**
61
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayToolConfiguration`.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration.html}
63
+ */
64
+ export type ApiGatewayToolConfiguration = {
65
+ ToolFilters: ApiGatewayToolFilter[];
66
+ ToolOverrides?: ApiGatewayToolOverride[];
67
+ };
68
+ /**
69
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayToolFilter`.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolfilter.html}
71
+ */
72
+ export type ApiGatewayToolFilter = {
73
+ FilterPath: string;
74
+ Methods: RestApiMethod[];
75
+ };
76
+ /**
77
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayToolOverride`.
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html}
79
+ */
80
+ export type ApiGatewayToolOverride = {
81
+ Description?: string;
82
+ Method: RestApiMethod;
83
+ Name: string;
84
+ Path: string;
85
+ };
51
86
  /**
52
87
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiKeyCredentialLocation`.
53
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentiallocation.html}
@@ -140,6 +175,8 @@ export type McpTargetConfiguration = {
140
175
  Lambda: McpLambdaTargetConfiguration;
141
176
  } | {
142
177
  McpServer: McpServerTargetConfiguration;
178
+ } | {
179
+ ApiGateway: ApiGatewayTargetConfiguration;
143
180
  };
144
181
  /**
145
182
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.MetadataConfiguration`.
@@ -183,6 +220,11 @@ export type OAuthCustomParameters = Record<string, string>;
183
220
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthgranttype.html}
184
221
  */
185
222
  export type OAuthGrantType = "AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS";
223
+ /**
224
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.RestApiMethod`.
225
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-restapimethod.html}
226
+ */
227
+ export type RestApiMethod = "GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST";
186
228
  /**
187
229
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.S3Configuration`.
188
230
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-s3configuration.html}
@@ -9,7 +9,7 @@ export type CleanRoomsAnalysisTemplateProperties = {
9
9
  /**
10
10
  * The member who can query can provide this placeholder for a literal data value in an analysis template
11
11
  * @minLength `0`
12
- * @maxLength `10`
12
+ * @maxLength `50`
13
13
  */
14
14
  AnalysisParameters?: AnalysisParameter[];
15
15
  /**
@@ -76,7 +76,7 @@ export type CleanRoomsAnalysisTemplateAttributes = {
76
76
  export type AnalysisParameter = {
77
77
  /**
78
78
  * @minLength `0`
79
- * @maxLength `250`
79
+ * @maxLength `1000`
80
80
  */
81
81
  DefaultValue?: string;
82
82
  /**
@@ -68,7 +68,7 @@ export type AnalyticsEngine = "CLEAN_ROOMS_SQL" | "SPARK";
68
68
  * Type definition for `AWS::CleanRooms::Collaboration.AutoApprovedChangeType`.
69
69
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-autoapprovedchangetype.html}
70
70
  */
71
- export type AutoApprovedChangeType = "ADD_MEMBER";
71
+ export type AutoApprovedChangeType = "ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY";
72
72
  /**
73
73
  * Type definition for `AWS::CleanRooms::Collaboration.CollaborationJobLogStatus`.
74
74
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-collaborationjoblogstatus.html}
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource schema for AWS::Config::OrganizationConformancePack.
4
+ * Resource Type definition for AWS::Config::OrganizationConformancePack.
5
5
  * @see {@link https://docs.aws.amazon.com/config/latest/developerguide/conformance-pack-organization-apis.html}
6
6
  */
7
7
  export type ConfigOrganizationConformancePackProperties = {
@@ -68,7 +68,7 @@ export type ConformancePackInputParameter = {
68
68
  ParameterValue: string;
69
69
  };
70
70
  /**
71
- * Resource schema for AWS::Config::OrganizationConformancePack.
71
+ * Resource Type definition for AWS::Config::OrganizationConformancePack.
72
72
  * @see {@link https://docs.aws.amazon.com/config/latest/developerguide/conformance-pack-organization-apis.html}
73
73
  */
74
74
  export declare class ConfigOrganizationConformancePack extends $Resource<"AWS::Config::OrganizationConformancePack", ConfigOrganizationConformancePackProperties, Record<string, never>> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::Config::OrganizationConformancePack.
3
+ * Resource Type definition for AWS::Config::OrganizationConformancePack.
4
4
  * @see {@link https://docs.aws.amazon.com/config/latest/developerguide/conformance-pack-organization-apis.html}
5
5
  */
6
6
  export class ConfigOrganizationConformancePack extends $Resource {
@@ -17,6 +17,10 @@ export type IoTLoggingProperties = {
17
17
  * The log level to use. Valid values are: ERROR, WARN, INFO, DEBUG, or DISABLED.
18
18
  */
19
19
  DefaultLogLevel: "ERROR" | "WARN" | "INFO" | "DEBUG" | "DISABLED";
20
+ /**
21
+ * Configurations for event-based logging that specifies which event types to log and their logging settings. Overrides account-level logging for the specified event
22
+ */
23
+ EventConfigurations?: EventConfiguration[];
20
24
  /**
21
25
  * The ARN of the role that allows IoT to write to Cloudwatch logs.
22
26
  * @minLength `20`
@@ -24,6 +28,30 @@ export type IoTLoggingProperties = {
24
28
  */
25
29
  RoleArn: string;
26
30
  };
31
+ /**
32
+ * Type definition for `AWS::IoT::Logging.EventConfiguration`.
33
+ * Configuration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.
34
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html}
35
+ */
36
+ export type EventConfiguration = {
37
+ /**
38
+ * The type of event to log. These include event types like Connect, Publish, and Disconnect.
39
+ * @minLength `1`
40
+ * @maxLength `512`
41
+ */
42
+ EventType: string;
43
+ /**
44
+ * CloudWatch Log Group for event-based logging. Specifies where log events should be sent. The log destination for event-based logging overrides default Log Group for the specified event type and applies to all resources associated with that event.
45
+ * @minLength `1`
46
+ * @maxLength `512`
47
+ * @pattern `^(?!aws/)[a-zA-Z0-9_\-/.#]+$`
48
+ */
49
+ LogDestination?: string;
50
+ /**
51
+ * The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.
52
+ */
53
+ LogLevel?: "ERROR" | "WARN" | "INFO" | "DEBUG" | "DISABLED";
54
+ };
27
55
  /**
28
56
  * Resource type definition for `AWS::IoT::Logging`.
29
57
  * Logging Options enable you to configure your IoT V2 logging role and default logging level so that you can monitor progress events logs as it passes from your devices through Iot core service.
@@ -0,0 +1,131 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::MWAAServerless::Workflow resource
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html}
6
+ */
7
+ export type MWAAServerlessWorkflowProperties = {
8
+ DefinitionS3Location: S3Location;
9
+ /**
10
+ * @minLength `1`
11
+ * @maxLength `1024`
12
+ * @pattern `^.+$`
13
+ */
14
+ Description?: string;
15
+ EncryptionConfiguration?: EncryptionConfiguration;
16
+ LoggingConfiguration?: LoggingConfiguration;
17
+ /**
18
+ * @minLength `1`
19
+ * @maxLength `255`
20
+ * @pattern `^[a-zA-Z0-9]+[a-zA-Z0-9\.\-_]*$`
21
+ */
22
+ Name?: string;
23
+ NetworkConfiguration?: NetworkConfiguration;
24
+ /**
25
+ * @minLength `1`
26
+ * @maxLength `2048`
27
+ * @pattern `^arn:aws(?:-(?:cn|us-gov|iso|iso-b|iso-e|iso-f))?:iam::[0-9]{12}:role(/[a-zA-Z0-9+=,.@_-]{1,512})*?/[a-zA-Z0-9+=,.@_-]{1,64}$`
28
+ */
29
+ RoleArn: string;
30
+ /**
31
+ * A map of key-value pairs to be applied as tags
32
+ */
33
+ Tags?: Tags;
34
+ /**
35
+ * @minLength `1`
36
+ * @maxLength `255`
37
+ */
38
+ TriggerMode?: string;
39
+ };
40
+ /**
41
+ * Attribute type definition for `AWS::MWAAServerless::Workflow`.
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#aws-resource-mwaaserverless-workflow-return-values}
43
+ */
44
+ export type MWAAServerlessWorkflowAttributes = {
45
+ CreatedAt: string;
46
+ ModifiedAt: string;
47
+ ScheduleConfiguration: {
48
+ CronExpression: string;
49
+ };
50
+ /**
51
+ * @minLength `1`
52
+ * @maxLength `2048`
53
+ * @pattern `^arn:aws(?:-(?:cn|us-gov|iso|iso-b|iso-e|iso-f))?:airflow-serverless:([a-z]{2}-[a-z]+-[0-9]{1}):([0-9]{12}):workflow/([a-zA-Z0-9][a-zA-Z0-9\.\-_]{0,254}-[a-zA-z0-9]{10})$`
54
+ */
55
+ WorkflowArn: string;
56
+ WorkflowStatus: WorkflowStatus;
57
+ /**
58
+ * @minLength `32`
59
+ * @maxLength `32`
60
+ * @pattern `^[a-z0-9]{32}$`
61
+ */
62
+ WorkflowVersion: string;
63
+ };
64
+ /**
65
+ * Type definition for `AWS::MWAAServerless::Workflow.EncryptionConfiguration`.
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-encryptionconfiguration.html}
67
+ */
68
+ export type EncryptionConfiguration = {
69
+ KmsKeyId?: string;
70
+ Type: "AWS_MANAGED_KEY" | "CUSTOMER_MANAGED_KEY";
71
+ };
72
+ /**
73
+ * Type definition for `AWS::MWAAServerless::Workflow.LoggingConfiguration`.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-loggingconfiguration.html}
75
+ */
76
+ export type LoggingConfiguration = {
77
+ /**
78
+ * @minLength `1`
79
+ */
80
+ LogGroupName: string;
81
+ };
82
+ /**
83
+ * Type definition for `AWS::MWAAServerless::Workflow.NetworkConfiguration`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-networkconfiguration.html}
85
+ */
86
+ export type NetworkConfiguration = {
87
+ SecurityGroupIds?: string[];
88
+ SubnetIds?: string[];
89
+ };
90
+ /**
91
+ * Type definition for `AWS::MWAAServerless::Workflow.S3Location`.
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-s3location.html}
93
+ */
94
+ export type S3Location = {
95
+ /**
96
+ * @minLength `1`
97
+ */
98
+ Bucket: string;
99
+ /**
100
+ * @minLength `1`
101
+ */
102
+ ObjectKey: string;
103
+ VersionId?: string;
104
+ };
105
+ /**
106
+ * Type definition for `AWS::MWAAServerless::Workflow.ScheduleConfiguration`.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-scheduleconfiguration.html}
108
+ */
109
+ export type ScheduleConfiguration = {
110
+ CronExpression?: string;
111
+ };
112
+ /**
113
+ * Type definition for `AWS::MWAAServerless::Workflow.Tags`.
114
+ * A map of key-value pairs to be applied as tags
115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-tags.html}
116
+ */
117
+ export type Tags = Record<string, string>;
118
+ /**
119
+ * Type definition for `AWS::MWAAServerless::Workflow.WorkflowStatus`.
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-workflowstatus.html}
121
+ */
122
+ export type WorkflowStatus = "READY" | "DELETING";
123
+ /**
124
+ * Resource Type definition for AWS::MWAAServerless::Workflow resource
125
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html}
126
+ */
127
+ export declare class MWAAServerlessWorkflow extends $Resource<"AWS::MWAAServerless::Workflow", MWAAServerlessWorkflowProperties, MWAAServerlessWorkflowAttributes> {
128
+ static readonly Type = "AWS::MWAAServerless::Workflow";
129
+ constructor(logicalId: string, properties: MWAAServerlessWorkflowProperties, options?: $ResourceOptions);
130
+ }
131
+ //# sourceMappingURL=AWS-MWAAServerless-Workflow.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::MWAAServerless::Workflow resource
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html}
5
+ */
6
+ export class MWAAServerlessWorkflow extends $Resource {
7
+ static Type = "AWS::MWAAServerless::Workflow";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MWAAServerlessWorkflow.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MWAAServerless-Workflow.js.map
@@ -6,11 +6,19 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
7
7
  */
8
8
  export type OpenSearchServerlessCollectionProperties = {
9
+ /**
10
+ * The name of the collection group to associate with the collection.
11
+ */
12
+ CollectionGroupName?: string;
9
13
  /**
10
14
  * The description of the collection
11
15
  * @maxLength `1000`
12
16
  */
13
17
  Description?: string;
18
+ /**
19
+ * Encryption settings for the collection
20
+ */
21
+ EncryptionConfig?: EncryptionConfig;
14
22
  /**
15
23
  * The name of the collection.
16
24
 
@@ -64,7 +72,7 @@ export type OpenSearchServerlessCollectionAttributes = {
64
72
  */
65
73
  Id: string;
66
74
  /**
67
- * The ARN of the AWS KMS key used to encrypt the collection.
75
+ * Key Management Service key used to encrypt the collection.
68
76
  */
69
77
  KmsKeyArn: string;
70
78
  };
@@ -74,6 +82,21 @@ export type OpenSearchServerlessCollectionAttributes = {
74
82
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
75
83
  */
76
84
  export type CollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
85
+ /**
86
+ * Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
87
+ * Encryption settings for the collection
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
89
+ */
90
+ export type EncryptionConfig = {
91
+ /**
92
+ * Indicates whether to use an AWS owned key for encryption.
93
+ */
94
+ AWSOwnedKey?: boolean;
95
+ /**
96
+ * Key Management Service key used to encrypt the collection.
97
+ */
98
+ KmsKeyArn?: string;
99
+ };
77
100
  /**
78
101
  * Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
79
102
  * The possible standby replicas for the collection
@@ -32,9 +32,9 @@ export type OrganizationsPolicyProperties = {
32
32
  */
33
33
  TargetIds?: string[];
34
34
  /**
35
- * The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, S3_POLICY, INSPECTOR_POLICY, BEDROCK_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
35
+ * The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, BEDROCK_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, INSPECTOR_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, RESOURCE_CONTROL_POLICY, S3_POLICY, SECURITYHUB_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, UPGRADE_ROLLOUT_POLICY
36
36
  */
37
- Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY";
37
+ Type: "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "BEDROCK_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "INSPECTOR_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "RESOURCE_CONTROL_POLICY" | "S3_POLICY" | "SECURITYHUB_POLICY" | "SERVICE_CONTROL_POLICY" | "TAG_POLICY" | "UPGRADE_ROLLOUT_POLICY";
38
38
  };
39
39
  /**
40
40
  * Attribute type definition for `AWS::Organizations::Policy`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.527",
3
+ "version": "0.1.529",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },