@awboost/cfn-resource-types 0.1.500 → 0.1.502
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.
|
@@ -60,6 +60,20 @@ export type EntityResolutionMatchingWorkflowAttributes = {
|
|
|
60
60
|
*/
|
|
61
61
|
WorkflowArn: string;
|
|
62
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::EntityResolution::MatchingWorkflow.CustomerProfilesIntegrationConfig`.
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-customerprofilesintegrationconfig.html}
|
|
66
|
+
*/
|
|
67
|
+
export type CustomerProfilesIntegrationConfig = {
|
|
68
|
+
/**
|
|
69
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn):profile:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(domains/[a-zA-Z_0-9-]{1,255})$`
|
|
70
|
+
*/
|
|
71
|
+
DomainArn: string;
|
|
72
|
+
/**
|
|
73
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn):profile:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(domains/[a-zA-Z_0-9-]{1,255}/object-types/[a-zA-Z_0-9-]{1,255})$`
|
|
74
|
+
*/
|
|
75
|
+
ObjectTypeArn: string;
|
|
76
|
+
};
|
|
63
77
|
/**
|
|
64
78
|
* Type definition for `AWS::EntityResolution::MatchingWorkflow.IncrementalRunConfig`.
|
|
65
79
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html}
|
|
@@ -113,6 +127,7 @@ export type OutputAttribute = {
|
|
|
113
127
|
*/
|
|
114
128
|
export type OutputSource = {
|
|
115
129
|
ApplyNormalization?: boolean;
|
|
130
|
+
CustomerProfilesIntegrationConfig?: CustomerProfilesIntegrationConfig;
|
|
116
131
|
/**
|
|
117
132
|
* @pattern `^arn:(aws|aws-us-gov|aws-cn):kms:.*:[0-9]+:.*$`
|
|
118
133
|
*/
|
|
@@ -126,7 +141,7 @@ export type OutputSource = {
|
|
|
126
141
|
* The S3 path to which Entity Resolution will write the output table
|
|
127
142
|
* @pattern `^s3://([^/]+)/?(.*?([^/]+)/?)$`
|
|
128
143
|
*/
|
|
129
|
-
OutputS3Path
|
|
144
|
+
OutputS3Path?: string;
|
|
130
145
|
};
|
|
131
146
|
/**
|
|
132
147
|
* Type definition for `AWS::EntityResolution::MatchingWorkflow.ProviderProperties`.
|
|
@@ -239,6 +239,11 @@ export type ClusterInstanceGroup = {
|
|
|
239
239
|
* The lifecycle configuration for a SageMaker HyperPod cluster.
|
|
240
240
|
*/
|
|
241
241
|
LifeCycleConfig: ClusterLifeCycleConfig;
|
|
242
|
+
/**
|
|
243
|
+
* The minimum number of instances required for the instance group to be InService. MinInstanceCount must be less than or equal to InstanceCount.
|
|
244
|
+
* @min `0`
|
|
245
|
+
*/
|
|
246
|
+
MinInstanceCount?: number;
|
|
242
247
|
/**
|
|
243
248
|
* Nodes will undergo advanced stress test to detect and replace faulty instances, based on the type of deep health check(s) passed in.
|
|
244
249
|
*/
|
|
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type WorkSpacesWebUserSettingsProperties = {
|
|
8
8
|
AdditionalEncryptionContext?: EncryptionContextMap;
|
|
9
|
+
BrandingConfiguration?: BrandingConfiguration;
|
|
9
10
|
CookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
10
11
|
CopyAllowed: EnabledType;
|
|
11
12
|
/**
|
|
@@ -42,6 +43,38 @@ export type WorkSpacesWebUserSettingsProperties = {
|
|
|
42
43
|
*/
|
|
43
44
|
export type WorkSpacesWebUserSettingsAttributes = {
|
|
44
45
|
AssociatedPortalArns: string[];
|
|
46
|
+
BrandingConfiguration: {
|
|
47
|
+
FaviconMetadata: {
|
|
48
|
+
/**
|
|
49
|
+
* @minLength `0`
|
|
50
|
+
* @maxLength `131072`
|
|
51
|
+
* @pattern `^[\s\S]*$`
|
|
52
|
+
*/
|
|
53
|
+
FileExtension: string;
|
|
54
|
+
LastUploadTimestamp: string;
|
|
55
|
+
MimeType: MimeType;
|
|
56
|
+
};
|
|
57
|
+
LogoMetadata: {
|
|
58
|
+
/**
|
|
59
|
+
* @minLength `0`
|
|
60
|
+
* @maxLength `131072`
|
|
61
|
+
* @pattern `^[\s\S]*$`
|
|
62
|
+
*/
|
|
63
|
+
FileExtension: string;
|
|
64
|
+
LastUploadTimestamp: string;
|
|
65
|
+
MimeType: MimeType;
|
|
66
|
+
};
|
|
67
|
+
WallpaperMetadata: {
|
|
68
|
+
/**
|
|
69
|
+
* @minLength `0`
|
|
70
|
+
* @maxLength `131072`
|
|
71
|
+
* @pattern `^[\s\S]*$`
|
|
72
|
+
*/
|
|
73
|
+
FileExtension: string;
|
|
74
|
+
LastUploadTimestamp: string;
|
|
75
|
+
MimeType: MimeType;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
45
78
|
/**
|
|
46
79
|
* @minLength `20`
|
|
47
80
|
* @maxLength `2048`
|
|
@@ -49,6 +82,35 @@ export type WorkSpacesWebUserSettingsAttributes = {
|
|
|
49
82
|
*/
|
|
50
83
|
UserSettingsArn: string;
|
|
51
84
|
};
|
|
85
|
+
/**
|
|
86
|
+
* Type definition for `AWS::WorkSpacesWeb::UserSettings.BrandingConfiguration`.
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-brandingconfiguration.html}
|
|
88
|
+
*/
|
|
89
|
+
export type BrandingConfiguration = {
|
|
90
|
+
ColorTheme?: ColorTheme;
|
|
91
|
+
/**
|
|
92
|
+
* @pattern `(^s3://[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]/.+$)|(^(?=(.{4})*$)[A-Za-z0-9+/]*={0,2}$)`
|
|
93
|
+
*/
|
|
94
|
+
Favicon?: string;
|
|
95
|
+
LocalizedStrings?: LocalizedBrandingStringMap;
|
|
96
|
+
/**
|
|
97
|
+
* @pattern `(^s3://[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]/.+$)|(^(?=(.{4})*$)[A-Za-z0-9+/]*={0,2}$)`
|
|
98
|
+
*/
|
|
99
|
+
Logo?: string;
|
|
100
|
+
/**
|
|
101
|
+
* @maxLength `153600`
|
|
102
|
+
*/
|
|
103
|
+
TermsOfService?: string;
|
|
104
|
+
/**
|
|
105
|
+
* @pattern `(^s3://[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]/.+$)|(^(?=(.{4})*$)[A-Za-z0-9+/]*={0,2}$)`
|
|
106
|
+
*/
|
|
107
|
+
Wallpaper?: string;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* Type definition for `AWS::WorkSpacesWeb::UserSettings.ColorTheme`.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-colortheme.html}
|
|
112
|
+
*/
|
|
113
|
+
export type ColorTheme = "Light" | "Dark";
|
|
52
114
|
/**
|
|
53
115
|
* Type definition for `AWS::WorkSpacesWeb::UserSettings.CookieSpecification`.
|
|
54
116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-cookiespecification.html}
|
|
@@ -98,11 +160,73 @@ export type EnabledType = "Disabled" | "Enabled";
|
|
|
98
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-encryptioncontextmap.html}
|
|
99
161
|
*/
|
|
100
162
|
export type EncryptionContextMap = Record<string, string>;
|
|
163
|
+
/**
|
|
164
|
+
* Type definition for `AWS::WorkSpacesWeb::UserSettings.ImageMetadata`.
|
|
165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-imagemetadata.html}
|
|
166
|
+
*/
|
|
167
|
+
export type ImageMetadata = {
|
|
168
|
+
/**
|
|
169
|
+
* @minLength `0`
|
|
170
|
+
* @maxLength `131072`
|
|
171
|
+
* @pattern `^[\s\S]*$`
|
|
172
|
+
*/
|
|
173
|
+
FileExtension: string;
|
|
174
|
+
LastUploadTimestamp: string;
|
|
175
|
+
MimeType: MimeType;
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* Type definition for `AWS::WorkSpacesWeb::UserSettings.LocalizedBrandingStringMap`.
|
|
179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-localizedbrandingstringmap.html}
|
|
180
|
+
*/
|
|
181
|
+
export type LocalizedBrandingStringMap = Record<string, LocalizedBrandingStrings>;
|
|
182
|
+
/**
|
|
183
|
+
* Type definition for `AWS::WorkSpacesWeb::UserSettings.LocalizedBrandingStrings`.
|
|
184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-localizedbrandingstrings.html}
|
|
185
|
+
*/
|
|
186
|
+
export type LocalizedBrandingStrings = {
|
|
187
|
+
/**
|
|
188
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
189
|
+
*/
|
|
190
|
+
BrowserTabTitle: string;
|
|
191
|
+
/**
|
|
192
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
193
|
+
*/
|
|
194
|
+
ContactButtonText?: string;
|
|
195
|
+
/**
|
|
196
|
+
* @pattern `^(https?://|mailto:).*`
|
|
197
|
+
*/
|
|
198
|
+
ContactLink?: string;
|
|
199
|
+
/**
|
|
200
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
201
|
+
*/
|
|
202
|
+
LoadingText?: string;
|
|
203
|
+
/**
|
|
204
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
205
|
+
*/
|
|
206
|
+
LoginButtonText?: string;
|
|
207
|
+
/**
|
|
208
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
209
|
+
*/
|
|
210
|
+
LoginDescription?: string;
|
|
211
|
+
/**
|
|
212
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
213
|
+
*/
|
|
214
|
+
LoginTitle?: string;
|
|
215
|
+
/**
|
|
216
|
+
* @pattern `^[^<>&'`~\\]*$`
|
|
217
|
+
*/
|
|
218
|
+
WelcomeText: string;
|
|
219
|
+
};
|
|
101
220
|
/**
|
|
102
221
|
* Type definition for `AWS::WorkSpacesWeb::UserSettings.MaxDisplayResolution`.
|
|
103
222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-maxdisplayresolution.html}
|
|
104
223
|
*/
|
|
105
224
|
export type MaxDisplayResolution = "size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600";
|
|
225
|
+
/**
|
|
226
|
+
* Type definition for `AWS::WorkSpacesWeb::UserSettings.MimeType`.
|
|
227
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-mimetype.html}
|
|
228
|
+
*/
|
|
229
|
+
export type MimeType = "image/png" | "image/jpeg" | "image/x-icon";
|
|
106
230
|
/**
|
|
107
231
|
* Type definition for `AWS::WorkSpacesWeb::UserSettings.Tag`.
|
|
108
232
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-tag.html}
|