@awboost/cfn-resource-types 0.1.274 → 0.1.276
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-Bedrock-Blueprint.d.ts +93 -0
- package/lib/AWS-Bedrock-Blueprint.js +12 -0
- package/lib/AWS-Bedrock-DataAutomationProject.d.ts +397 -0
- package/lib/AWS-Bedrock-DataAutomationProject.js +12 -0
- package/lib/AWS-EC2-LocalGatewayRoute.d.ts +2 -2
- package/lib/AWS-EC2-LocalGatewayRoute.js +1 -1
- package/lib/AWS-EC2-LocalGatewayRouteTable.d.ts +2 -2
- package/lib/AWS-EC2-LocalGatewayRouteTable.js +1 -1
- package/lib/AWS-EC2-LocalGatewayRouteTableVPCAssociation.d.ts +2 -2
- package/lib/AWS-EC2-LocalGatewayRouteTableVPCAssociation.js +1 -1
- package/lib/AWS-EC2-LocalGatewayRouteTableVirtualInterfaceGroupAssociation.d.ts +2 -2
- package/lib/AWS-EC2-LocalGatewayRouteTableVirtualInterfaceGroupAssociation.js +1 -1
- package/lib/AWS-WAFv2-RuleGroup.d.ts +36 -0
- package/lib/AWS-WAFv2-WebACL.d.ts +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,93 @@
|
|
|
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
|
+
* Definition of AWS::Bedrock::Blueprint Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BedrockBlueprintProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Name of the Blueprint
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `128`
|
|
12
|
+
* @pattern `^[a-zA-Z0-9-_]+$`
|
|
13
|
+
*/
|
|
14
|
+
BlueprintName: string;
|
|
15
|
+
/**
|
|
16
|
+
* KMS encryption context
|
|
17
|
+
*/
|
|
18
|
+
KmsEncryptionContext?: Record<string, string>;
|
|
19
|
+
/**
|
|
20
|
+
* KMS key identifier
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `2048`
|
|
23
|
+
*/
|
|
24
|
+
KmsKeyId?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Schema of the blueprint
|
|
27
|
+
*/
|
|
28
|
+
Schema: Record<string, any>;
|
|
29
|
+
/**
|
|
30
|
+
* List of Tags
|
|
31
|
+
* @minLength `0`
|
|
32
|
+
* @maxLength `200`
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[];
|
|
35
|
+
/**
|
|
36
|
+
* Modality Type
|
|
37
|
+
*/
|
|
38
|
+
Type: "DOCUMENT" | "IMAGE";
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Attribute type definition for `AWS::Bedrock::Blueprint`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#aws-resource-bedrock-blueprint-return-values}
|
|
43
|
+
*/
|
|
44
|
+
export type BedrockBlueprintAttributes = {
|
|
45
|
+
/**
|
|
46
|
+
* ARN of a Blueprint
|
|
47
|
+
* @maxLength `128`
|
|
48
|
+
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$`
|
|
49
|
+
*/
|
|
50
|
+
BlueprintArn: string;
|
|
51
|
+
/**
|
|
52
|
+
* Stage of the Blueprint
|
|
53
|
+
*/
|
|
54
|
+
BlueprintStage: "DEVELOPMENT" | "LIVE";
|
|
55
|
+
/**
|
|
56
|
+
* Creation timestamp
|
|
57
|
+
*/
|
|
58
|
+
CreationTime: string;
|
|
59
|
+
/**
|
|
60
|
+
* Last modified timestamp
|
|
61
|
+
*/
|
|
62
|
+
LastModifiedTime: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::Bedrock::Blueprint.Tag`.
|
|
66
|
+
* Definition of the key/value pair for a tag
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-blueprint-tag.html}
|
|
68
|
+
*/
|
|
69
|
+
export type Tag = {
|
|
70
|
+
/**
|
|
71
|
+
* Key for the tag
|
|
72
|
+
* @minLength `1`
|
|
73
|
+
* @maxLength `128`
|
|
74
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
75
|
+
*/
|
|
76
|
+
Key: string;
|
|
77
|
+
/**
|
|
78
|
+
* Value for the tag
|
|
79
|
+
* @minLength `0`
|
|
80
|
+
* @maxLength `256`
|
|
81
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
82
|
+
*/
|
|
83
|
+
Value: string;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* Definition of AWS::Bedrock::Blueprint Resource Type
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html}
|
|
88
|
+
*/
|
|
89
|
+
export declare class BedrockBlueprint extends $Resource<"AWS::Bedrock::Blueprint", BedrockBlueprintProperties, BedrockBlueprintAttributes> {
|
|
90
|
+
static readonly Type = "AWS::Bedrock::Blueprint";
|
|
91
|
+
constructor(logicalId: string, properties: BedrockBlueprintProperties, options?: $ResourceOptions);
|
|
92
|
+
}
|
|
93
|
+
//# sourceMappingURL=AWS-Bedrock-Blueprint.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Bedrock::Blueprint Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BedrockBlueprint extends $Resource {
|
|
7
|
+
static Type = "AWS::Bedrock::Blueprint";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BedrockBlueprint.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Bedrock-Blueprint.js.map
|
|
@@ -0,0 +1,397 @@
|
|
|
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
|
+
* Definition of AWS::Bedrock::DataAutomationProject Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BedrockDataAutomationProjectProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Custom output configuration
|
|
10
|
+
*/
|
|
11
|
+
CustomOutputConfiguration?: CustomOutputConfiguration;
|
|
12
|
+
/**
|
|
13
|
+
* KMS encryption context
|
|
14
|
+
*/
|
|
15
|
+
KmsEncryptionContext?: Record<string, string>;
|
|
16
|
+
/**
|
|
17
|
+
* KMS key identifier
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `2048`
|
|
20
|
+
*/
|
|
21
|
+
KmsKeyId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Override configuration
|
|
24
|
+
*/
|
|
25
|
+
OverrideConfiguration?: OverrideConfiguration;
|
|
26
|
+
/**
|
|
27
|
+
* Description of the DataAutomationProject
|
|
28
|
+
*/
|
|
29
|
+
ProjectDescription?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Name of the DataAutomationProject
|
|
32
|
+
* @minLength `1`
|
|
33
|
+
* @maxLength `128`
|
|
34
|
+
* @pattern `^[a-zA-Z0-9-_]+$`
|
|
35
|
+
*/
|
|
36
|
+
ProjectName: string;
|
|
37
|
+
/**
|
|
38
|
+
* Standard output configuration
|
|
39
|
+
*/
|
|
40
|
+
StandardOutputConfiguration?: StandardOutputConfiguration;
|
|
41
|
+
/**
|
|
42
|
+
* List of Tags
|
|
43
|
+
* @minLength `0`
|
|
44
|
+
* @maxLength `200`
|
|
45
|
+
*/
|
|
46
|
+
Tags?: Tag[];
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Attribute type definition for `AWS::Bedrock::DataAutomationProject`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#aws-resource-bedrock-dataautomationproject-return-values}
|
|
51
|
+
*/
|
|
52
|
+
export type BedrockDataAutomationProjectAttributes = {
|
|
53
|
+
/**
|
|
54
|
+
* Time Stamp
|
|
55
|
+
*/
|
|
56
|
+
CreationTime: string;
|
|
57
|
+
/**
|
|
58
|
+
* Time Stamp
|
|
59
|
+
*/
|
|
60
|
+
LastModifiedTime: string;
|
|
61
|
+
/**
|
|
62
|
+
* ARN of a DataAutomationProject
|
|
63
|
+
* @maxLength `128`
|
|
64
|
+
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):data-automation-project/[a-zA-Z0-9-]{12,36}$`
|
|
65
|
+
*/
|
|
66
|
+
ProjectArn: string;
|
|
67
|
+
/**
|
|
68
|
+
* Stage of the Project
|
|
69
|
+
*/
|
|
70
|
+
ProjectStage: DataAutomationProjectStage;
|
|
71
|
+
Status: DataAutomationProjectStatus;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioExtractionCategory`.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html}
|
|
76
|
+
*/
|
|
77
|
+
export type AudioExtractionCategory = {
|
|
78
|
+
State: State;
|
|
79
|
+
Types?: AudioExtractionCategoryType[];
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioExtractionCategoryType`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategorytype.html}
|
|
84
|
+
*/
|
|
85
|
+
export type AudioExtractionCategoryType = "AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION";
|
|
86
|
+
/**
|
|
87
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardExtraction`.
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardextraction.html}
|
|
89
|
+
*/
|
|
90
|
+
export type AudioStandardExtraction = {
|
|
91
|
+
Category: AudioExtractionCategory;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardGenerativeField`.
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardgenerativefield.html}
|
|
96
|
+
*/
|
|
97
|
+
export type AudioStandardGenerativeField = {
|
|
98
|
+
State: State;
|
|
99
|
+
Types?: AudioStandardGenerativeFieldType[];
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardGenerativeFieldType`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardgenerativefieldtype.html}
|
|
104
|
+
*/
|
|
105
|
+
export type AudioStandardGenerativeFieldType = "AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY";
|
|
106
|
+
/**
|
|
107
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardOutputConfiguration`.
|
|
108
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardoutputconfiguration.html}
|
|
109
|
+
*/
|
|
110
|
+
export type AudioStandardOutputConfiguration = {
|
|
111
|
+
Extraction?: AudioStandardExtraction;
|
|
112
|
+
GenerativeField?: AudioStandardGenerativeField;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.BlueprintItem`.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintitem.html}
|
|
117
|
+
*/
|
|
118
|
+
export type BlueprintItem = {
|
|
119
|
+
/**
|
|
120
|
+
* ARN of a Blueprint
|
|
121
|
+
* @maxLength `128`
|
|
122
|
+
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$`
|
|
123
|
+
*/
|
|
124
|
+
BlueprintArn: string;
|
|
125
|
+
/**
|
|
126
|
+
* Stage of the Blueprint
|
|
127
|
+
*/
|
|
128
|
+
BlueprintStage?: BlueprintStage;
|
|
129
|
+
/**
|
|
130
|
+
* Blueprint Version
|
|
131
|
+
* @minLength `1`
|
|
132
|
+
* @maxLength `128`
|
|
133
|
+
* @pattern `^[0-9]*$`
|
|
134
|
+
*/
|
|
135
|
+
BlueprintVersion?: string;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.BlueprintStage`.
|
|
139
|
+
* Stage of the Blueprint
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintstage.html}
|
|
141
|
+
*/
|
|
142
|
+
export type BlueprintStage = "DEVELOPMENT" | "LIVE";
|
|
143
|
+
/**
|
|
144
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.CustomOutputConfiguration`.
|
|
145
|
+
* Custom output configuration
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-customoutputconfiguration.html}
|
|
147
|
+
*/
|
|
148
|
+
export type CustomOutputConfiguration = {
|
|
149
|
+
Blueprints?: BlueprintItem[];
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DataAutomationProjectStage`.
|
|
153
|
+
* Stage of the Project
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-dataautomationprojectstage.html}
|
|
155
|
+
*/
|
|
156
|
+
export type DataAutomationProjectStage = "DEVELOPMENT" | "LIVE";
|
|
157
|
+
/**
|
|
158
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DataAutomationProjectStatus`.
|
|
159
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-dataautomationprojectstatus.html}
|
|
160
|
+
*/
|
|
161
|
+
export type DataAutomationProjectStatus = "COMPLETED" | "IN_PROGRESS" | "FAILED";
|
|
162
|
+
/**
|
|
163
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentBoundingBox`.
|
|
164
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentboundingbox.html}
|
|
165
|
+
*/
|
|
166
|
+
export type DocumentBoundingBox = {
|
|
167
|
+
State: State;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentExtractionGranularity`.
|
|
171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentextractiongranularity.html}
|
|
172
|
+
*/
|
|
173
|
+
export type DocumentExtractionGranularity = {
|
|
174
|
+
Types?: DocumentExtractionGranularityType[];
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentExtractionGranularityType`.
|
|
178
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentextractiongranularitytype.html}
|
|
179
|
+
*/
|
|
180
|
+
export type DocumentExtractionGranularityType = "DOCUMENT" | "PAGE" | "ELEMENT" | "WORD" | "LINE";
|
|
181
|
+
/**
|
|
182
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentOutputAdditionalFileFormat`.
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputadditionalfileformat.html}
|
|
184
|
+
*/
|
|
185
|
+
export type DocumentOutputAdditionalFileFormat = {
|
|
186
|
+
State: State;
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentOutputFormat`.
|
|
190
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputformat.html}
|
|
191
|
+
*/
|
|
192
|
+
export type DocumentOutputFormat = {
|
|
193
|
+
AdditionalFileFormat: DocumentOutputAdditionalFileFormat;
|
|
194
|
+
TextFormat: DocumentOutputTextFormat;
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentOutputTextFormat`.
|
|
198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputtextformat.html}
|
|
199
|
+
*/
|
|
200
|
+
export type DocumentOutputTextFormat = {
|
|
201
|
+
Types?: DocumentOutputTextFormatType[];
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentOutputTextFormatType`.
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputtextformattype.html}
|
|
206
|
+
*/
|
|
207
|
+
export type DocumentOutputTextFormatType = "PLAIN_TEXT" | "MARKDOWN" | "HTML" | "CSV";
|
|
208
|
+
/**
|
|
209
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentOverrideConfiguration`.
|
|
210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoverrideconfiguration.html}
|
|
211
|
+
*/
|
|
212
|
+
export type DocumentOverrideConfiguration = {
|
|
213
|
+
Splitter?: SplitterConfiguration;
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentStandardExtraction`.
|
|
217
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardextraction.html}
|
|
218
|
+
*/
|
|
219
|
+
export type DocumentStandardExtraction = {
|
|
220
|
+
BoundingBox: DocumentBoundingBox;
|
|
221
|
+
Granularity: DocumentExtractionGranularity;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentStandardGenerativeField`.
|
|
225
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardgenerativefield.html}
|
|
226
|
+
*/
|
|
227
|
+
export type DocumentStandardGenerativeField = {
|
|
228
|
+
State: State;
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.DocumentStandardOutputConfiguration`.
|
|
232
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardoutputconfiguration.html}
|
|
233
|
+
*/
|
|
234
|
+
export type DocumentStandardOutputConfiguration = {
|
|
235
|
+
Extraction?: DocumentStandardExtraction;
|
|
236
|
+
GenerativeField?: DocumentStandardGenerativeField;
|
|
237
|
+
OutputFormat?: DocumentOutputFormat;
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageBoundingBox`.
|
|
241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageboundingbox.html}
|
|
242
|
+
*/
|
|
243
|
+
export type ImageBoundingBox = {
|
|
244
|
+
State: State;
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageExtractionCategory`.
|
|
248
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageextractioncategory.html}
|
|
249
|
+
*/
|
|
250
|
+
export type ImageExtractionCategory = {
|
|
251
|
+
State: State;
|
|
252
|
+
Types?: ImageExtractionCategoryType[];
|
|
253
|
+
};
|
|
254
|
+
/**
|
|
255
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageExtractionCategoryType`.
|
|
256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageextractioncategorytype.html}
|
|
257
|
+
*/
|
|
258
|
+
export type ImageExtractionCategoryType = "CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS";
|
|
259
|
+
/**
|
|
260
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardExtraction`.
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardextraction.html}
|
|
262
|
+
*/
|
|
263
|
+
export type ImageStandardExtraction = {
|
|
264
|
+
BoundingBox: ImageBoundingBox;
|
|
265
|
+
Category: ImageExtractionCategory;
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardGenerativeField`.
|
|
269
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardgenerativefield.html}
|
|
270
|
+
*/
|
|
271
|
+
export type ImageStandardGenerativeField = {
|
|
272
|
+
State: State;
|
|
273
|
+
Types?: ImageStandardGenerativeFieldType[];
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardGenerativeFieldType`.
|
|
277
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardgenerativefieldtype.html}
|
|
278
|
+
*/
|
|
279
|
+
export type ImageStandardGenerativeFieldType = "IMAGE_SUMMARY" | "IAB";
|
|
280
|
+
/**
|
|
281
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardOutputConfiguration`.
|
|
282
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardoutputconfiguration.html}
|
|
283
|
+
*/
|
|
284
|
+
export type ImageStandardOutputConfiguration = {
|
|
285
|
+
Extraction?: ImageStandardExtraction;
|
|
286
|
+
GenerativeField?: ImageStandardGenerativeField;
|
|
287
|
+
};
|
|
288
|
+
/**
|
|
289
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.OverrideConfiguration`.
|
|
290
|
+
* Override configuration
|
|
291
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-overrideconfiguration.html}
|
|
292
|
+
*/
|
|
293
|
+
export type OverrideConfiguration = {
|
|
294
|
+
Document?: DocumentOverrideConfiguration;
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.SplitterConfiguration`.
|
|
298
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-splitterconfiguration.html}
|
|
299
|
+
*/
|
|
300
|
+
export type SplitterConfiguration = {
|
|
301
|
+
State?: State;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.StandardOutputConfiguration`.
|
|
305
|
+
* Standard output configuration
|
|
306
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-standardoutputconfiguration.html}
|
|
307
|
+
*/
|
|
308
|
+
export type StandardOutputConfiguration = {
|
|
309
|
+
Audio?: AudioStandardOutputConfiguration;
|
|
310
|
+
Document?: DocumentStandardOutputConfiguration;
|
|
311
|
+
Image?: ImageStandardOutputConfiguration;
|
|
312
|
+
Video?: VideoStandardOutputConfiguration;
|
|
313
|
+
};
|
|
314
|
+
/**
|
|
315
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.State`.
|
|
316
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-state.html}
|
|
317
|
+
*/
|
|
318
|
+
export type State = "ENABLED" | "DISABLED";
|
|
319
|
+
/**
|
|
320
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.Tag`.
|
|
321
|
+
* Definition of the key/value pair for a tag
|
|
322
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-tag.html}
|
|
323
|
+
*/
|
|
324
|
+
export type Tag = {
|
|
325
|
+
/**
|
|
326
|
+
* Key for the tag
|
|
327
|
+
* @minLength `1`
|
|
328
|
+
* @maxLength `128`
|
|
329
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
330
|
+
*/
|
|
331
|
+
Key: string;
|
|
332
|
+
/**
|
|
333
|
+
* Value for the tag
|
|
334
|
+
* @minLength `0`
|
|
335
|
+
* @maxLength `256`
|
|
336
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
337
|
+
*/
|
|
338
|
+
Value: string;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoBoundingBox`.
|
|
342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoboundingbox.html}
|
|
343
|
+
*/
|
|
344
|
+
export type VideoBoundingBox = {
|
|
345
|
+
State: State;
|
|
346
|
+
};
|
|
347
|
+
/**
|
|
348
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoExtractionCategory`.
|
|
349
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoextractioncategory.html}
|
|
350
|
+
*/
|
|
351
|
+
export type VideoExtractionCategory = {
|
|
352
|
+
State: State;
|
|
353
|
+
Types?: VideoExtractionCategoryType[];
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoExtractionCategoryType`.
|
|
357
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoextractioncategorytype.html}
|
|
358
|
+
*/
|
|
359
|
+
export type VideoExtractionCategoryType = "CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS";
|
|
360
|
+
/**
|
|
361
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardExtraction`.
|
|
362
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardextraction.html}
|
|
363
|
+
*/
|
|
364
|
+
export type VideoStandardExtraction = {
|
|
365
|
+
BoundingBox: VideoBoundingBox;
|
|
366
|
+
Category: VideoExtractionCategory;
|
|
367
|
+
};
|
|
368
|
+
/**
|
|
369
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardGenerativeField`.
|
|
370
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardgenerativefield.html}
|
|
371
|
+
*/
|
|
372
|
+
export type VideoStandardGenerativeField = {
|
|
373
|
+
State: State;
|
|
374
|
+
Types?: VideoStandardGenerativeFieldType[];
|
|
375
|
+
};
|
|
376
|
+
/**
|
|
377
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardGenerativeFieldType`.
|
|
378
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardgenerativefieldtype.html}
|
|
379
|
+
*/
|
|
380
|
+
export type VideoStandardGenerativeFieldType = "VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY";
|
|
381
|
+
/**
|
|
382
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardOutputConfiguration`.
|
|
383
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardoutputconfiguration.html}
|
|
384
|
+
*/
|
|
385
|
+
export type VideoStandardOutputConfiguration = {
|
|
386
|
+
Extraction?: VideoStandardExtraction;
|
|
387
|
+
GenerativeField?: VideoStandardGenerativeField;
|
|
388
|
+
};
|
|
389
|
+
/**
|
|
390
|
+
* Definition of AWS::Bedrock::DataAutomationProject Resource Type
|
|
391
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html}
|
|
392
|
+
*/
|
|
393
|
+
export declare class BedrockDataAutomationProject extends $Resource<"AWS::Bedrock::DataAutomationProject", BedrockDataAutomationProjectProperties, BedrockDataAutomationProjectAttributes> {
|
|
394
|
+
static readonly Type = "AWS::Bedrock::DataAutomationProject";
|
|
395
|
+
constructor(logicalId: string, properties: BedrockDataAutomationProjectProperties, options?: $ResourceOptions);
|
|
396
|
+
}
|
|
397
|
+
//# sourceMappingURL=AWS-Bedrock-DataAutomationProject.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Bedrock::DataAutomationProject Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BedrockDataAutomationProject extends $Resource {
|
|
7
|
+
static Type = "AWS::Bedrock::DataAutomationProject";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BedrockDataAutomationProject.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Bedrock-DataAutomationProject.js.map
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::EC2::LocalGatewayRoute`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for Local Gateway Route which describes a route for a local gateway route table.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2LocalGatewayRouteProperties = {
|
|
@@ -39,7 +39,7 @@ export type EC2LocalGatewayRouteAttributes = {
|
|
|
39
39
|
};
|
|
40
40
|
/**
|
|
41
41
|
* Resource type definition for `AWS::EC2::LocalGatewayRoute`.
|
|
42
|
-
*
|
|
42
|
+
* Resource Type definition for Local Gateway Route which describes a route for a local gateway route table.
|
|
43
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html}
|
|
44
44
|
*/
|
|
45
45
|
export declare class EC2LocalGatewayRoute extends $Resource<"AWS::EC2::LocalGatewayRoute", EC2LocalGatewayRouteProperties, EC2LocalGatewayRouteAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::EC2::LocalGatewayRoute`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for Local Gateway Route which describes a route for a local gateway route table.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html}
|
|
6
6
|
*/
|
|
7
7
|
export class EC2LocalGatewayRoute extends $Resource {
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTable`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for Local Gateway Route Table which describes a route table for a local gateway.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetable.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2LocalGatewayRouteTableProperties = {
|
|
@@ -65,7 +65,7 @@ export type Tag = {
|
|
|
65
65
|
};
|
|
66
66
|
/**
|
|
67
67
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTable`.
|
|
68
|
-
*
|
|
68
|
+
* Resource Type definition for Local Gateway Route Table which describes a route table for a local gateway.
|
|
69
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetable.html}
|
|
70
70
|
*/
|
|
71
71
|
export declare class EC2LocalGatewayRouteTable extends $Resource<"AWS::EC2::LocalGatewayRouteTable", EC2LocalGatewayRouteTableProperties, EC2LocalGatewayRouteTableAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTable`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for Local Gateway Route Table which describes a route table for a local gateway.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetable.html}
|
|
6
6
|
*/
|
|
7
7
|
export class EC2LocalGatewayRouteTable extends $Resource {
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTableVPCAssociation`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for Local Gateway Route Table VPC Association which describes an association between a local gateway route table and a VPC.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2LocalGatewayRouteTableVPCAssociationProperties = {
|
|
@@ -57,7 +57,7 @@ export type Tag = {
|
|
|
57
57
|
};
|
|
58
58
|
/**
|
|
59
59
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTableVPCAssociation`.
|
|
60
|
-
*
|
|
60
|
+
* Resource Type definition for Local Gateway Route Table VPC Association which describes an association between a local gateway route table and a VPC.
|
|
61
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html}
|
|
62
62
|
*/
|
|
63
63
|
export declare class EC2LocalGatewayRouteTableVPCAssociation extends $Resource<"AWS::EC2::LocalGatewayRouteTableVPCAssociation", EC2LocalGatewayRouteTableVPCAssociationProperties, EC2LocalGatewayRouteTableVPCAssociationAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTableVPCAssociation`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for Local Gateway Route Table VPC Association which describes an association between a local gateway route table and a VPC.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html}
|
|
6
6
|
*/
|
|
7
7
|
export class EC2LocalGatewayRouteTableVPCAssociation extends $Resource {
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for Local Gateway Route Table Virtual Interface Group Association which describes a local gateway route table virtual interface group association for a local gateway.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevirtualinterfacegroupassociation.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2LocalGatewayRouteTableVirtualInterfaceGroupAssociationProperties = {
|
|
@@ -65,7 +65,7 @@ export type Tag = {
|
|
|
65
65
|
};
|
|
66
66
|
/**
|
|
67
67
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation`.
|
|
68
|
-
*
|
|
68
|
+
* Resource Type definition for Local Gateway Route Table Virtual Interface Group Association which describes a local gateway route table virtual interface group association for a local gateway.
|
|
69
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevirtualinterfacegroupassociation.html}
|
|
70
70
|
*/
|
|
71
71
|
export declare class EC2LocalGatewayRouteTableVirtualInterfaceGroupAssociation extends $Resource<"AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation", EC2LocalGatewayRouteTableVirtualInterfaceGroupAssociationProperties, EC2LocalGatewayRouteTableVirtualInterfaceGroupAssociationAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for Local Gateway Route Table Virtual Interface Group Association which describes a local gateway route table virtual interface group association for a local gateway.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevirtualinterfacegroupassociation.html}
|
|
6
6
|
*/
|
|
7
7
|
export class EC2LocalGatewayRouteTableVirtualInterfaceGroupAssociation extends $Resource {
|
|
@@ -348,6 +348,10 @@ export type FieldToMatch = {
|
|
|
348
348
|
* Includes the JA3 fingerprint of a web request.
|
|
349
349
|
*/
|
|
350
350
|
JA3Fingerprint?: JA3Fingerprint;
|
|
351
|
+
/**
|
|
352
|
+
* Includes the JA4 fingerprint of a web request.
|
|
353
|
+
*/
|
|
354
|
+
JA4Fingerprint?: JA4Fingerprint;
|
|
351
355
|
/**
|
|
352
356
|
* Inspect the request body as JSON. The request body immediately follows the request headers.
|
|
353
357
|
*/
|
|
@@ -477,6 +481,14 @@ export type IPSetReferenceStatement = {
|
|
|
477
481
|
export type JA3Fingerprint = {
|
|
478
482
|
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
479
483
|
};
|
|
484
|
+
/**
|
|
485
|
+
* Type definition for `AWS::WAFv2::RuleGroup.JA4Fingerprint`.
|
|
486
|
+
* Includes the JA4 fingerprint of a web request.
|
|
487
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ja4fingerprint.html}
|
|
488
|
+
*/
|
|
489
|
+
export type JA4Fingerprint = {
|
|
490
|
+
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
491
|
+
};
|
|
480
492
|
/**
|
|
481
493
|
* Type definition for `AWS::WAFv2::RuleGroup.JsonBody`.
|
|
482
494
|
* Inspect the request body as JSON. The request body immediately follows the request headers.
|
|
@@ -629,6 +641,14 @@ export type RateBasedStatementCustomKey = {
|
|
|
629
641
|
* Specifies the IP address in the web request as an aggregate key for a rate-based rule.
|
|
630
642
|
*/
|
|
631
643
|
IP?: RateLimitIP;
|
|
644
|
+
/**
|
|
645
|
+
* Specifies the request's JA3 fingerprint as an aggregate key for a rate-based rule.
|
|
646
|
+
*/
|
|
647
|
+
JA3Fingerprint?: RateLimitJA3Fingerprint;
|
|
648
|
+
/**
|
|
649
|
+
* Specifies the request's JA4 fingerprint as an aggregate key for a rate-based rule.
|
|
650
|
+
*/
|
|
651
|
+
JA4Fingerprint?: RateLimitJA4Fingerprint;
|
|
632
652
|
/**
|
|
633
653
|
* Specifies a label namespace to use as an aggregate key for a rate-based rule.
|
|
634
654
|
*/
|
|
@@ -694,6 +714,22 @@ export type RateLimitHTTPMethod = Record<string, any>;
|
|
|
694
714
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitip.html}
|
|
695
715
|
*/
|
|
696
716
|
export type RateLimitIP = Record<string, any>;
|
|
717
|
+
/**
|
|
718
|
+
* Type definition for `AWS::WAFv2::RuleGroup.RateLimitJA3Fingerprint`.
|
|
719
|
+
* Specifies the request's JA3 fingerprint as an aggregate key for a rate-based rule.
|
|
720
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitja3fingerprint.html}
|
|
721
|
+
*/
|
|
722
|
+
export type RateLimitJA3Fingerprint = {
|
|
723
|
+
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
724
|
+
};
|
|
725
|
+
/**
|
|
726
|
+
* Type definition for `AWS::WAFv2::RuleGroup.RateLimitJA4Fingerprint`.
|
|
727
|
+
* Specifies the request's JA4 fingerprint as an aggregate key for a rate-based rule.
|
|
728
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratelimitja4fingerprint.html}
|
|
729
|
+
*/
|
|
730
|
+
export type RateLimitJA4Fingerprint = {
|
|
731
|
+
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
732
|
+
};
|
|
697
733
|
/**
|
|
698
734
|
* Type definition for `AWS::WAFv2::RuleGroup.RateLimitLabelNamespace`.
|
|
699
735
|
* Specifies a label namespace to use as an aggregate key for a rate-based rule.
|
|
@@ -441,6 +441,10 @@ export type FieldToMatch = {
|
|
|
441
441
|
* Includes the JA3 fingerprint of a web request.
|
|
442
442
|
*/
|
|
443
443
|
JA3Fingerprint?: JA3Fingerprint;
|
|
444
|
+
/**
|
|
445
|
+
* Includes the JA4 fingerprint of a web request.
|
|
446
|
+
*/
|
|
447
|
+
JA4Fingerprint?: JA4Fingerprint;
|
|
444
448
|
/**
|
|
445
449
|
* Inspect the request body as JSON. The request body immediately follows the request headers.
|
|
446
450
|
*/
|
|
@@ -570,6 +574,14 @@ export type IPSetReferenceStatement = {
|
|
|
570
574
|
export type JA3Fingerprint = {
|
|
571
575
|
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
572
576
|
};
|
|
577
|
+
/**
|
|
578
|
+
* Type definition for `AWS::WAFv2::WebACL.JA4Fingerprint`.
|
|
579
|
+
* Includes the JA4 fingerprint of a web request.
|
|
580
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ja4fingerprint.html}
|
|
581
|
+
*/
|
|
582
|
+
export type JA4Fingerprint = {
|
|
583
|
+
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
584
|
+
};
|
|
573
585
|
/**
|
|
574
586
|
* Type definition for `AWS::WAFv2::WebACL.JsonBody`.
|
|
575
587
|
* Inspect the request body as JSON. The request body immediately follows the request headers.
|
|
@@ -802,6 +814,14 @@ export type RateBasedStatementCustomKey = {
|
|
|
802
814
|
* Specifies the IP address in the web request as an aggregate key for a rate-based rule.
|
|
803
815
|
*/
|
|
804
816
|
IP?: RateLimitIP;
|
|
817
|
+
/**
|
|
818
|
+
* Specifies the request's JA3 fingerprint as an aggregate key for a rate-based rule.
|
|
819
|
+
*/
|
|
820
|
+
JA3Fingerprint?: RateLimitJA3Fingerprint;
|
|
821
|
+
/**
|
|
822
|
+
* Specifies the request's JA4 fingerprint as an aggregate key for a rate-based rule.
|
|
823
|
+
*/
|
|
824
|
+
JA4Fingerprint?: RateLimitJA4Fingerprint;
|
|
805
825
|
/**
|
|
806
826
|
* Specifies a label namespace to use as an aggregate key for a rate-based rule.
|
|
807
827
|
*/
|
|
@@ -867,6 +887,22 @@ export type RateLimitHTTPMethod = Record<string, any>;
|
|
|
867
887
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitip.html}
|
|
868
888
|
*/
|
|
869
889
|
export type RateLimitIP = Record<string, any>;
|
|
890
|
+
/**
|
|
891
|
+
* Type definition for `AWS::WAFv2::WebACL.RateLimitJA3Fingerprint`.
|
|
892
|
+
* Specifies the request's JA3 fingerprint as an aggregate key for a rate-based rule.
|
|
893
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitja3fingerprint.html}
|
|
894
|
+
*/
|
|
895
|
+
export type RateLimitJA3Fingerprint = {
|
|
896
|
+
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
897
|
+
};
|
|
898
|
+
/**
|
|
899
|
+
* Type definition for `AWS::WAFv2::WebACL.RateLimitJA4Fingerprint`.
|
|
900
|
+
* Specifies the request's JA4 fingerprint as an aggregate key for a rate-based rule.
|
|
901
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitja4fingerprint.html}
|
|
902
|
+
*/
|
|
903
|
+
export type RateLimitJA4Fingerprint = {
|
|
904
|
+
FallbackBehavior: "MATCH" | "NO_MATCH";
|
|
905
|
+
};
|
|
870
906
|
/**
|
|
871
907
|
* Type definition for `AWS::WAFv2::WebACL.RateLimitLabelNamespace`.
|
|
872
908
|
* Specifies a label namespace to use as an aggregate key for a rate-based rule.
|