@awboost/cfn-resource-types 0.1.527 → 0.1.528
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-Backup-BackupPlan.d.ts +29 -0
- package/lib/AWS-Backup-TieringConfiguration.d.ts +39 -0
- package/lib/AWS-Backup-TieringConfiguration.js +12 -0
- package/lib/AWS-CleanRooms-AnalysisTemplate.d.ts +2 -2
- package/lib/AWS-CleanRooms-Collaboration.d.ts +1 -1
- package/lib/AWS-Config-OrganizationConformancePack.d.ts +2 -2
- package/lib/AWS-Config-OrganizationConformancePack.js +1 -1
- package/lib/AWS-IoT-Logging.d.ts +28 -0
- package/lib/AWS-MWAAServerless-Workflow.d.ts +131 -0
- package/lib/AWS-MWAAServerless-Workflow.js +12 -0
- package/package.json +1 -1
|
@@ -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 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 `
|
|
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 `
|
|
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
|
|
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
|
|
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
|
|
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 {
|
package/lib/AWS-IoT-Logging.d.ts
CHANGED
|
@@ -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
|