@awboost/cfn-resource-types 0.1.120 → 0.1.122

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.
@@ -50,6 +50,11 @@ export type CleanRoomsConfiguredTableAttributes = {
50
50
  */
51
51
  ConfiguredTableIdentifier: string;
52
52
  };
53
+ /**
54
+ * Type definition for `AWS::CleanRooms::ConfiguredTable.AdditionalAnalyses`.
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-additionalanalyses.html}
56
+ */
57
+ export type AdditionalAnalyses = "ALLOWED" | "REQUIRED" | "NOT_ALLOWED";
53
58
  /**
54
59
  * Type definition for `AWS::CleanRooms::ConfiguredTable.AggregateColumn`.
55
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregatecolumn.html}
@@ -107,6 +112,7 @@ export type AnalysisRule = {
107
112
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html}
108
113
  */
109
114
  export type AnalysisRuleAggregation = {
115
+ AdditionalAnalyses?: AdditionalAnalyses;
110
116
  /**
111
117
  * @minLength `1`
112
118
  */
@@ -129,6 +135,7 @@ export type AnalysisRuleAggregation = {
129
135
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html}
130
136
  */
131
137
  export type AnalysisRuleCustom = {
138
+ AdditionalAnalyses?: AdditionalAnalyses;
132
139
  /**
133
140
  * @minLength `0`
134
141
  */
@@ -138,12 +145,17 @@ export type AnalysisRuleCustom = {
138
145
  */
139
146
  AllowedAnalysisProviders?: string[];
140
147
  DifferentialPrivacy?: DifferentialPrivacy;
148
+ /**
149
+ * @minLength `0`
150
+ */
151
+ DisallowedOutputColumns?: string[];
141
152
  };
142
153
  /**
143
154
  * Type definition for `AWS::CleanRooms::ConfiguredTable.AnalysisRuleList`.
144
155
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html}
145
156
  */
146
157
  export type AnalysisRuleList = {
158
+ AdditionalAnalyses?: AdditionalAnalyses;
147
159
  /**
148
160
  * @maxLength `2`
149
161
  */
@@ -6,6 +6,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html}
7
7
  */
8
8
  export type CleanRoomsConfiguredTableAssociationProperties = {
9
+ /**
10
+ * @minLength `1`
11
+ * @maxLength `1`
12
+ */
13
+ ConfiguredTableAssociationAnalysisRules?: ConfiguredTableAssociationAnalysisRule[];
9
14
  /**
10
15
  * @minLength `36`
11
16
  * @maxLength `36`
@@ -54,6 +59,82 @@ export type CleanRoomsConfiguredTableAssociationAttributes = {
54
59
  */
55
60
  ConfiguredTableAssociationIdentifier: string;
56
61
  };
62
+ /**
63
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRule`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule.html}
65
+ */
66
+ export type ConfiguredTableAssociationAnalysisRule = {
67
+ Policy: ConfiguredTableAssociationAnalysisRulePolicy;
68
+ Type: ConfiguredTableAssociationAnalysisRuleType;
69
+ };
70
+ /**
71
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregation`.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation.html}
73
+ */
74
+ export type ConfiguredTableAssociationAnalysisRuleAggregation = {
75
+ /**
76
+ * @minLength `0`
77
+ * @maxLength `25`
78
+ */
79
+ AllowedAdditionalAnalyses?: string[];
80
+ /**
81
+ * @minLength `0`
82
+ */
83
+ AllowedResultReceivers?: string[];
84
+ };
85
+ /**
86
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleCustom`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom.html}
88
+ */
89
+ export type ConfiguredTableAssociationAnalysisRuleCustom = {
90
+ /**
91
+ * @minLength `0`
92
+ * @maxLength `25`
93
+ */
94
+ AllowedAdditionalAnalyses?: string[];
95
+ /**
96
+ * @minLength `0`
97
+ */
98
+ AllowedResultReceivers?: string[];
99
+ };
100
+ /**
101
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleList`.
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist.html}
103
+ */
104
+ export type ConfiguredTableAssociationAnalysisRuleList = {
105
+ /**
106
+ * @minLength `0`
107
+ * @maxLength `25`
108
+ */
109
+ AllowedAdditionalAnalyses?: string[];
110
+ /**
111
+ * @minLength `0`
112
+ */
113
+ AllowedResultReceivers?: string[];
114
+ };
115
+ /**
116
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicy`.
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicy.html}
118
+ */
119
+ export type ConfiguredTableAssociationAnalysisRulePolicy = {
120
+ V1: ConfiguredTableAssociationAnalysisRulePolicyV1;
121
+ };
122
+ /**
123
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1`.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1.html}
125
+ */
126
+ export type ConfiguredTableAssociationAnalysisRulePolicyV1 = {
127
+ List: ConfiguredTableAssociationAnalysisRuleList;
128
+ } | {
129
+ Aggregation: ConfiguredTableAssociationAnalysisRuleAggregation;
130
+ } | {
131
+ Custom: ConfiguredTableAssociationAnalysisRuleCustom;
132
+ };
133
+ /**
134
+ * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleType`.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruletype.html}
136
+ */
137
+ export type ConfiguredTableAssociationAnalysisRuleType = "AGGREGATION" | "LIST" | "CUSTOM";
57
138
  /**
58
139
  * Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.Tag`.
59
140
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-tag.html}
@@ -0,0 +1,129 @@
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::CleanRooms::IdMappingTable`.
5
+ * Represents an association between an ID mapping workflow and a collaboration
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html}
7
+ */
8
+ export type CleanRoomsIdMappingTableProperties = {
9
+ /**
10
+ * @maxLength `255`
11
+ * @pattern `^[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
12
+ */
13
+ Description?: string;
14
+ InputReferenceConfig: IdMappingTableInputReferenceConfig;
15
+ /**
16
+ * @minLength `4`
17
+ * @maxLength `2048`
18
+ */
19
+ KmsKeyArn?: string;
20
+ /**
21
+ * @minLength `36`
22
+ * @maxLength `36`
23
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
24
+ */
25
+ MembershipIdentifier: string;
26
+ /**
27
+ * @maxLength `128`
28
+ * @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
29
+ */
30
+ Name: string;
31
+ Tags?: Tag[];
32
+ };
33
+ /**
34
+ * Attribute type definition for `AWS::CleanRooms::IdMappingTable`.
35
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#aws-resource-cleanrooms-idmappingtable-return-values}
36
+ */
37
+ export type CleanRoomsIdMappingTableAttributes = {
38
+ /**
39
+ * @maxLength `200`
40
+ */
41
+ Arn: string;
42
+ /**
43
+ * @maxLength `100`
44
+ */
45
+ CollaborationArn: string;
46
+ /**
47
+ * @minLength `36`
48
+ * @maxLength `36`
49
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
50
+ */
51
+ CollaborationIdentifier: string;
52
+ /**
53
+ * @minLength `36`
54
+ * @maxLength `36`
55
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
56
+ */
57
+ IdMappingTableIdentifier: string;
58
+ InputReferenceProperties: {
59
+ /**
60
+ * @minLength `2`
61
+ * @maxLength `2`
62
+ */
63
+ IdMappingTableInputSource: {
64
+ IdNamespaceAssociationId: string;
65
+ Type: "SOURCE" | "TARGET";
66
+ }[];
67
+ };
68
+ /**
69
+ * @maxLength `100`
70
+ */
71
+ MembershipArn: string;
72
+ };
73
+ /**
74
+ * Type definition for `AWS::CleanRooms::IdMappingTable.IdMappingTableInputReferenceConfig`.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig.html}
76
+ */
77
+ export type IdMappingTableInputReferenceConfig = {
78
+ /**
79
+ * @minLength `20`
80
+ * @maxLength `2048`
81
+ */
82
+ InputReferenceArn: string;
83
+ ManageResourcePolicies: boolean;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::CleanRooms::IdMappingTable.IdMappingTableInputReferenceProperties`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceproperties.html}
88
+ */
89
+ export type IdMappingTableInputReferenceProperties = {
90
+ /**
91
+ * @minLength `2`
92
+ * @maxLength `2`
93
+ */
94
+ IdMappingTableInputSource: IdMappingTableInputSource[];
95
+ };
96
+ /**
97
+ * Type definition for `AWS::CleanRooms::IdMappingTable.IdMappingTableInputSource`.
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputsource.html}
99
+ */
100
+ export type IdMappingTableInputSource = {
101
+ IdNamespaceAssociationId: string;
102
+ Type: "SOURCE" | "TARGET";
103
+ };
104
+ /**
105
+ * Type definition for `AWS::CleanRooms::IdMappingTable.Tag`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-tag.html}
107
+ */
108
+ export type Tag = {
109
+ /**
110
+ * @minLength `1`
111
+ * @maxLength `128`
112
+ */
113
+ Key: string;
114
+ /**
115
+ * @minLength `1`
116
+ * @maxLength `256`
117
+ */
118
+ Value: string;
119
+ };
120
+ /**
121
+ * Resource type definition for `AWS::CleanRooms::IdMappingTable`.
122
+ * Represents an association between an ID mapping workflow and a collaboration
123
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html}
124
+ */
125
+ export declare class CleanRoomsIdMappingTable extends $Resource<"AWS::CleanRooms::IdMappingTable", CleanRoomsIdMappingTableProperties, CleanRoomsIdMappingTableAttributes> {
126
+ static readonly Type = "AWS::CleanRooms::IdMappingTable";
127
+ constructor(logicalId: string, properties: CleanRoomsIdMappingTableProperties, options?: $ResourceOptions);
128
+ }
129
+ //# sourceMappingURL=AWS-CleanRooms-IdMappingTable.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::CleanRooms::IdMappingTable`.
4
+ * Represents an association between an ID mapping workflow and a collaboration
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html}
6
+ */
7
+ export class CleanRoomsIdMappingTable extends $Resource {
8
+ static Type = "AWS::CleanRooms::IdMappingTable";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, CleanRoomsIdMappingTable.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-CleanRooms-IdMappingTable.js.map
@@ -0,0 +1,120 @@
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::CleanRooms::IdNamespaceAssociation`.
5
+ * Represents an association between an ID namespace and a collaboration
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html}
7
+ */
8
+ export type CleanRoomsIdNamespaceAssociationProperties = {
9
+ /**
10
+ * @maxLength `255`
11
+ * @pattern `^[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
12
+ */
13
+ Description?: string;
14
+ IdMappingConfig?: IdMappingConfig;
15
+ InputReferenceConfig: IdNamespaceAssociationInputReferenceConfig;
16
+ /**
17
+ * @minLength `36`
18
+ * @maxLength `36`
19
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
20
+ */
21
+ MembershipIdentifier: string;
22
+ /**
23
+ * @minLength `1`
24
+ * @maxLength `100`
25
+ * @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
26
+ */
27
+ Name: string;
28
+ Tags?: Tag[];
29
+ };
30
+ /**
31
+ * Attribute type definition for `AWS::CleanRooms::IdNamespaceAssociation`.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#aws-resource-cleanrooms-idnamespaceassociation-return-values}
33
+ */
34
+ export type CleanRoomsIdNamespaceAssociationAttributes = {
35
+ /**
36
+ * @maxLength `256`
37
+ */
38
+ Arn: string;
39
+ /**
40
+ * @maxLength `100`
41
+ */
42
+ CollaborationArn: string;
43
+ /**
44
+ * @minLength `36`
45
+ * @maxLength `36`
46
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
47
+ */
48
+ CollaborationIdentifier: string;
49
+ /**
50
+ * @minLength `36`
51
+ * @maxLength `36`
52
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
53
+ */
54
+ IdNamespaceAssociationIdentifier: string;
55
+ InputReferenceProperties: {
56
+ IdMappingWorkflowsSupported: Record<string, any>[];
57
+ IdNamespaceType: "SOURCE" | "TARGET";
58
+ };
59
+ /**
60
+ * @maxLength `100`
61
+ */
62
+ MembershipArn: string;
63
+ };
64
+ /**
65
+ * Type definition for `AWS::CleanRooms::IdNamespaceAssociation.Document`.
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-document.html}
67
+ */
68
+ export type Document = Record<string, any>;
69
+ /**
70
+ * Type definition for `AWS::CleanRooms::IdNamespaceAssociation.IdMappingConfig`.
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idmappingconfig.html}
72
+ */
73
+ export type IdMappingConfig = {
74
+ AllowUseAsDimensionColumn: boolean;
75
+ };
76
+ /**
77
+ * Type definition for `AWS::CleanRooms::IdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfig`.
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html}
79
+ */
80
+ export type IdNamespaceAssociationInputReferenceConfig = {
81
+ /**
82
+ * @maxLength `256`
83
+ */
84
+ InputReferenceArn: string;
85
+ ManageResourcePolicies: boolean;
86
+ };
87
+ /**
88
+ * Type definition for `AWS::CleanRooms::IdNamespaceAssociation.IdNamespaceAssociationInputReferenceProperties`.
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html}
90
+ */
91
+ export type IdNamespaceAssociationInputReferenceProperties = {
92
+ IdMappingWorkflowsSupported?: Document[];
93
+ IdNamespaceType?: "SOURCE" | "TARGET";
94
+ };
95
+ /**
96
+ * Type definition for `AWS::CleanRooms::IdNamespaceAssociation.Tag`.
97
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-tag.html}
98
+ */
99
+ export type Tag = {
100
+ /**
101
+ * @minLength `1`
102
+ * @maxLength `128`
103
+ */
104
+ Key: string;
105
+ /**
106
+ * @minLength `1`
107
+ * @maxLength `256`
108
+ */
109
+ Value: string;
110
+ };
111
+ /**
112
+ * Resource type definition for `AWS::CleanRooms::IdNamespaceAssociation`.
113
+ * Represents an association between an ID namespace and a collaboration
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html}
115
+ */
116
+ export declare class CleanRoomsIdNamespaceAssociation extends $Resource<"AWS::CleanRooms::IdNamespaceAssociation", CleanRoomsIdNamespaceAssociationProperties, CleanRoomsIdNamespaceAssociationAttributes> {
117
+ static readonly Type = "AWS::CleanRooms::IdNamespaceAssociation";
118
+ constructor(logicalId: string, properties: CleanRoomsIdNamespaceAssociationProperties, options?: $ResourceOptions);
119
+ }
120
+ //# sourceMappingURL=AWS-CleanRooms-IdNamespaceAssociation.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::CleanRooms::IdNamespaceAssociation`.
4
+ * Represents an association between an ID namespace and a collaboration
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html}
6
+ */
7
+ export class CleanRoomsIdNamespaceAssociation extends $Resource {
8
+ static Type = "AWS::CleanRooms::IdNamespaceAssociation";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, CleanRoomsIdNamespaceAssociation.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-CleanRooms-IdNamespaceAssociation.js.map
@@ -5,75 +5,151 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
6
6
  */
7
7
  export type GlueTriggerProperties = {
8
+ /**
9
+ * The actions initiated by this trigger.
10
+ */
8
11
  Actions: Action[];
12
+ /**
13
+ * A description of this trigger.
14
+ */
9
15
  Description?: string;
16
+ /**
17
+ * Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
18
+ */
10
19
  EventBatchingCondition?: EventBatchingCondition;
20
+ /**
21
+ * The name of the trigger.
22
+ */
11
23
  Name?: string;
24
+ /**
25
+ * The predicate of this trigger, which defines when it will fire.
26
+ */
12
27
  Predicate?: Predicate;
28
+ /**
29
+ * A cron expression used to specify the schedule.
30
+ */
13
31
  Schedule?: string;
32
+ /**
33
+ * Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
34
+ */
14
35
  StartOnCreation?: boolean;
36
+ /**
37
+ * The tags to use with this trigger.
38
+ */
15
39
  Tags?: Record<string, any>;
40
+ /**
41
+ * The type of trigger that this is.
42
+ */
16
43
  Type: string;
44
+ /**
45
+ * The name of the workflow associated with the trigger.
46
+ */
17
47
  WorkflowName?: string;
18
48
  };
19
- /**
20
- * Attribute type definition for `AWS::Glue::Trigger`.
21
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#aws-resource-glue-trigger-return-values}
22
- */
23
- export type GlueTriggerAttributes = {
24
- Id: string;
25
- };
26
49
  /**
27
50
  * Type definition for `AWS::Glue::Trigger.Action`.
51
+ * The actions initiated by this trigger.
28
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html}
29
53
  */
30
54
  export type Action = {
55
+ /**
56
+ * The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
57
+ */
31
58
  Arguments?: Record<string, any>;
59
+ /**
60
+ * The name of the crawler to be used with this action.
61
+ */
32
62
  CrawlerName?: string;
63
+ /**
64
+ * The name of a job to be executed.
65
+ */
33
66
  JobName?: string;
67
+ /**
68
+ * Specifies configuration properties of a job run notification.
69
+ */
34
70
  NotificationProperty?: NotificationProperty;
71
+ /**
72
+ * The name of the SecurityConfiguration structure to be used with this action.
73
+ */
35
74
  SecurityConfiguration?: string;
75
+ /**
76
+ * The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
77
+ */
36
78
  Timeout?: number;
37
79
  };
38
80
  /**
39
81
  * Type definition for `AWS::Glue::Trigger.Condition`.
82
+ * Defines a condition under which a trigger fires.
40
83
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html}
41
84
  */
42
85
  export type Condition = {
86
+ /**
87
+ * The state of the crawler to which this condition applies.
88
+ */
43
89
  CrawlState?: string;
90
+ /**
91
+ * The name of the crawler to which this condition applies.
92
+ */
44
93
  CrawlerName?: string;
94
+ /**
95
+ * The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
96
+ */
45
97
  JobName?: string;
98
+ /**
99
+ * A logical operator.
100
+ */
46
101
  LogicalOperator?: string;
102
+ /**
103
+ * The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
104
+ */
47
105
  State?: string;
48
106
  };
49
107
  /**
50
108
  * Type definition for `AWS::Glue::Trigger.EventBatchingCondition`.
109
+ * Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
51
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html}
52
111
  */
53
112
  export type EventBatchingCondition = {
113
+ /**
114
+ * Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
115
+ */
54
116
  BatchSize: number;
117
+ /**
118
+ * Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
119
+ */
55
120
  BatchWindow?: number;
56
121
  };
57
122
  /**
58
123
  * Type definition for `AWS::Glue::Trigger.NotificationProperty`.
124
+ * Specifies configuration properties of a job run notification.
59
125
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-notificationproperty.html}
60
126
  */
61
127
  export type NotificationProperty = {
128
+ /**
129
+ * After a job run starts, the number of minutes to wait before sending a job run delay notification
130
+ */
62
131
  NotifyDelayAfter?: number;
63
132
  };
64
133
  /**
65
134
  * Type definition for `AWS::Glue::Trigger.Predicate`.
135
+ * The predicate of this trigger, which defines when it will fire.
66
136
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html}
67
137
  */
68
138
  export type Predicate = {
139
+ /**
140
+ * A list of the conditions that determine when the trigger will fire.
141
+ */
69
142
  Conditions?: Condition[];
143
+ /**
144
+ * An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
145
+ */
70
146
  Logical?: string;
71
147
  };
72
148
  /**
73
149
  * Resource Type definition for AWS::Glue::Trigger
74
150
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
75
151
  */
76
- export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties, GlueTriggerAttributes> {
152
+ export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties, Record<string, never>> {
77
153
  static readonly Type = "AWS::Glue::Trigger";
78
154
  constructor(logicalId: string, properties: GlueTriggerProperties, options?: $ResourceOptions);
79
155
  }
@@ -10,14 +10,14 @@ export type InspectorV2CisScanConfigurationProperties = {
10
10
  * Name of the scan
11
11
  * @minLength `1`
12
12
  */
13
- ScanName?: string;
13
+ ScanName: string;
14
14
  /**
15
15
  * Choose a Schedule cadence
16
16
  */
17
- Schedule?: Schedule;
18
- SecurityLevel?: CisSecurityLevel;
17
+ Schedule: Schedule;
18
+ SecurityLevel: CisSecurityLevel;
19
19
  Tags?: CisTagMap;
20
- Targets?: CisTargets;
20
+ Targets: CisTargets;
21
21
  };
22
22
  /**
23
23
  * Attribute type definition for `AWS::InspectorV2::CisScanConfiguration`.
@@ -392,7 +392,7 @@ export type KernelGatewayAppSettings = {
392
392
  * Type definition for `AWS::SageMaker::Domain.MlTools`.
393
393
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
394
394
  */
395
- export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoML" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
395
+ export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
396
396
  /**
397
397
  * Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
398
398
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
@@ -256,7 +256,7 @@ export type KernelGatewayAppSettings = {
256
256
  * Type definition for `AWS::SageMaker::UserProfile.MlTools`.
257
257
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
258
258
  */
259
- export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoML" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
259
+ export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
260
260
  /**
261
261
  * Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
262
262
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.120",
3
+ "version": "0.1.122",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },