@awboost/cfn-resource-types 0.1.274 → 0.1.275
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.
|
@@ -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
|