@awboost/cfn-resource-types 0.1.519 → 0.1.521

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.
@@ -21,6 +21,10 @@ export type DataZoneEnvironmentBlueprintConfigurationProperties = {
21
21
  * @pattern `^arn:aws[^:]*:iam::(aws|\d{12}):policy/[\w+=,.@-]*$`
22
22
  */
23
23
  EnvironmentRolePermissionBoundary?: string;
24
+ /**
25
+ * Region-agnostic environment blueprint parameters.
26
+ */
27
+ GlobalParameters?: Record<string, string>;
24
28
  /**
25
29
  * @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/‍*[a-zA-Z0-9+=,.@_-]+$`
26
30
  */
@@ -27,6 +27,7 @@ export type DataZoneProjectProfileProperties = {
27
27
  */
28
28
  Name: string;
29
29
  Status?: Status;
30
+ UseDefaultConfigurations?: boolean;
30
31
  };
31
32
  /**
32
33
  * Attribute type definition for `AWS::DataZone::ProjectProfile`.
@@ -0,0 +1,82 @@
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
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
6
+ */
7
+ export type DocDBGlobalClusterProperties = {
8
+ /**
9
+ * Indicates whether the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
10
+ */
11
+ DeletionProtection?: boolean;
12
+ /**
13
+ * The database engine to use for this global cluster.
14
+ */
15
+ Engine?: "docdb";
16
+ /**
17
+ * The engine version to use for this global cluster.
18
+ */
19
+ EngineVersion?: string;
20
+ /**
21
+ * The cluster identifier of the global cluster.
22
+ * @minLength `1`
23
+ * @maxLength `63`
24
+ * @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
25
+ */
26
+ GlobalClusterIdentifier: string;
27
+ /**
28
+ * The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. You may also choose to instead specify the DBClusterIdentifier. If you provide a value for this parameter, don't specify values for the following settings because Amazon DocumentDB uses the values from the specified source DB cluster: Engine, EngineVersion, StorageEncrypted
29
+ */
30
+ SourceDBClusterIdentifier?: string;
31
+ /**
32
+ * Indicates whether the global cluster has storage encryption enabled.
33
+ */
34
+ StorageEncrypted?: boolean;
35
+ /**
36
+ * The tags to be assigned to the Amazon DocumentDB resource.
37
+ * @maxLength `50`
38
+ */
39
+ Tags?: Tag[];
40
+ };
41
+ /**
42
+ * Attribute type definition for `AWS::DocDB::GlobalCluster`.
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#aws-resource-docdb-globalcluster-return-values}
44
+ */
45
+ export type DocDBGlobalClusterAttributes = {
46
+ /**
47
+ * The Amazon Resource Name (ARN) for the global cluster.
48
+ */
49
+ GlobalClusterArn: string;
50
+ /**
51
+ * The AWS Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB cluster is accessed.
52
+ */
53
+ GlobalClusterResourceId: string;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::DocDB::GlobalCluster.Tag`.
57
+ * A key-value pair to associate with an Amazon DocumentDB resource.
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-docdb-globalcluster-tag.html}
59
+ */
60
+ export type Tag = {
61
+ /**
62
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
63
+ * @minLength `1`
64
+ * @maxLength `128`
65
+ */
66
+ Key: string;
67
+ /**
68
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
69
+ * @minLength `0`
70
+ * @maxLength `256`
71
+ */
72
+ Value: string;
73
+ };
74
+ /**
75
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
77
+ */
78
+ export declare class DocDBGlobalCluster extends $Resource<"AWS::DocDB::GlobalCluster", DocDBGlobalClusterProperties, DocDBGlobalClusterAttributes> {
79
+ static readonly Type = "AWS::DocDB::GlobalCluster";
80
+ constructor(logicalId: string, properties: DocDBGlobalClusterProperties, options?: $ResourceOptions);
81
+ }
82
+ //# sourceMappingURL=AWS-DocDB-GlobalCluster.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
5
+ */
6
+ export class DocDBGlobalCluster extends $Resource {
7
+ static Type = "AWS::DocDB::GlobalCluster";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DocDBGlobalCluster.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-DocDB-GlobalCluster.js.map
@@ -270,7 +270,7 @@ export type LocationCapacity = {
270
270
  * The minimum value allowed for the fleet's instance count for a location.
271
271
  * @min `0`
272
272
  */
273
- MinSize: number;
273
+ MinSize?: number;
274
274
  };
275
275
  /**
276
276
  * Type definition for `AWS::GameLift::ContainerFleet.LocationConfiguration`.
@@ -235,7 +235,7 @@ export type LocationCapacity = {
235
235
  * The minimum value allowed for the fleet's instance count for a location. When creating a new fleet, GameLift automatically sets this value to "0". After the fleet is active, you can change this value.
236
236
  * @min `0`
237
237
  */
238
- MinSize: number;
238
+ MinSize?: number;
239
239
  };
240
240
  /**
241
241
  * Type definition for `AWS::GameLift::Fleet.LocationConfiguration`.
@@ -468,6 +468,12 @@ export type FilterConfiguration = {
468
468
  * <p>Optionally specify the clip start time for all of your manifest egress requests. When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.</p>
469
469
  */
470
470
  ClipStartTime?: string;
471
+ /**
472
+ * <p>Optionally specify one or more DRM settings for all of your manifest egress requests. When you include a DRM setting, note that you cannot use an identical DRM setting query parameter for this manifest's endpoint URL.</p>
473
+ * @minLength `1`
474
+ * @maxLength `1024`
475
+ */
476
+ DrmSettings?: string;
471
477
  /**
472
478
  * <p>Optionally specify the end time for all of your manifest egress requests. When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.</p>
473
479
  */
@@ -719,6 +725,13 @@ export type Segment = {
719
725
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-spekekeyprovider.html}
720
726
  */
721
727
  export type SpekeKeyProvider = {
728
+ /**
729
+ * <p>The ARN for the certificate that you imported to AWS Certificate Manager to add content key encryption to this endpoint. For this feature to work, your DRM key provider must support content key encryption.</p>
730
+ * @minLength `20`
731
+ * @maxLength `2048`
732
+ * @pattern `^arn:([^:\n]+):acm:([^:\n]+):([0-9]+):certificate/[a-zA-Z0-9-_]+$`
733
+ */
734
+ CertificateArn?: string;
722
735
  /**
723
736
  * <p>The DRM solution provider you're using to protect your content during distribution.</p>
724
737
  * @minLength `1`
@@ -0,0 +1,319 @@
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 the AWS::QuickSight::ActionConnector Resource Type.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-actionconnector.html}
6
+ */
7
+ export type QuickSightActionConnectorProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `512`
11
+ * @pattern `^[\w\-]+$`
12
+ */
13
+ ActionConnectorId: string;
14
+ AuthenticationConfig?: AuthConfig;
15
+ /**
16
+ * @minLength `12`
17
+ * @maxLength `12`
18
+ * @pattern `^[0-9]{12}$`
19
+ */
20
+ AwsAccountId: string;
21
+ /**
22
+ * @minLength `1`
23
+ * @maxLength `2048`
24
+ * @pattern `^[A-Za-z0-9 _.,!?-]*$`
25
+ */
26
+ Description?: string;
27
+ /**
28
+ * @minLength `1`
29
+ * @maxLength `255`
30
+ * @pattern `^[A-Za-z0-9](?:[\w- ]*[A-Za-z0-9])?$`
31
+ */
32
+ Name: string;
33
+ /**
34
+ * @minLength `1`
35
+ * @maxLength `64`
36
+ */
37
+ Permissions?: ResourcePermission[];
38
+ /**
39
+ * @minLength `1`
40
+ * @maxLength `200`
41
+ */
42
+ Tags?: Tag[];
43
+ Type: ActionConnectorType;
44
+ VpcConnectionArn?: string;
45
+ };
46
+ /**
47
+ * Attribute type definition for `AWS::QuickSight::ActionConnector`.
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-actionconnector.html#aws-resource-quicksight-actionconnector-return-values}
49
+ */
50
+ export type QuickSightActionConnectorAttributes = {
51
+ Arn: string;
52
+ CreatedTime: string;
53
+ /**
54
+ * @maxLength `100`
55
+ */
56
+ EnabledActions: string[];
57
+ LastUpdatedTime: string;
58
+ Status: ResourceStatus;
59
+ };
60
+ /**
61
+ * Type definition for `AWS::QuickSight::ActionConnector.ActionConnectorType`.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-actionconnectortype.html}
63
+ */
64
+ export type ActionConnectorType = "GENERIC_HTTP" | "SERVICENOW_NOW_PLATFORM" | "SALESFORCE_CRM" | "MICROSOFT_OUTLOOK" | "PAGERDUTY_ADVANCE" | "JIRA_CLOUD" | "ATLASSIAN_CONFLUENCE" | "AMAZON_S3" | "AMAZON_BEDROCK_AGENT_RUNTIME" | "AMAZON_BEDROCK_RUNTIME" | "AMAZON_BEDROCK_DATA_AUTOMATION_RUNTIME" | "AMAZON_TEXTRACT" | "AMAZON_COMPREHEND" | "AMAZON_COMPREHEND_MEDICAL" | "MICROSOFT_ONEDRIVE" | "MICROSOFT_SHAREPOINT" | "MICROSOFT_TEAMS" | "SAP_BUSINESSPARTNER" | "SAP_PRODUCTMASTERDATA" | "SAP_PHYSICALINVENTORY" | "SAP_BILLOFMATERIALS" | "SAP_MATERIALSTOCK" | "ZENDESK_SUITE" | "SMARTSHEET" | "SLACK" | "ASANA" | "BAMBOO_HR";
65
+ /**
66
+ * Type definition for `AWS::QuickSight::ActionConnector.APIKeyConnectionMetadata`.
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-apikeyconnectionmetadata.html}
68
+ */
69
+ export type APIKeyConnectionMetadata = {
70
+ ApiKey: string;
71
+ /**
72
+ * @minLength `1`
73
+ * @maxLength `8192`
74
+ * @pattern `^https://.*`
75
+ */
76
+ BaseEndpoint: string;
77
+ /**
78
+ * @pattern `^[\w.%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$`
79
+ */
80
+ Email?: string;
81
+ };
82
+ /**
83
+ * Type definition for `AWS::QuickSight::ActionConnector.AuthConfig`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-authconfig.html}
85
+ */
86
+ export type AuthConfig = {
87
+ AuthenticationMetadata: AuthenticationMetadata;
88
+ AuthenticationType: ConnectionAuthType;
89
+ };
90
+ /**
91
+ * Type definition for `AWS::QuickSight::ActionConnector.AuthenticationMetadata`.
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-authenticationmetadata.html}
93
+ */
94
+ export type AuthenticationMetadata = {
95
+ AuthorizationCodeGrantMetadata: AuthorizationCodeGrantMetadata;
96
+ } | {
97
+ ClientCredentialsGrantMetadata: ClientCredentialsGrantMetadata;
98
+ } | {
99
+ BasicAuthConnectionMetadata: BasicAuthConnectionMetadata;
100
+ } | {
101
+ ApiKeyConnectionMetadata: APIKeyConnectionMetadata;
102
+ } | {
103
+ NoneConnectionMetadata: NoneConnectionMetadata;
104
+ } | {
105
+ IamConnectionMetadata: IAMConnectionMetadata;
106
+ };
107
+ /**
108
+ * Type definition for `AWS::QuickSight::ActionConnector.AuthorizationCodeGrantCredentialsDetails`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-authorizationcodegrantcredentialsdetails.html}
110
+ */
111
+ export type AuthorizationCodeGrantCredentialsDetails = {
112
+ AuthorizationCodeGrantDetails: AuthorizationCodeGrantDetails;
113
+ };
114
+ /**
115
+ * Type definition for `AWS::QuickSight::ActionConnector.AuthorizationCodeGrantCredentialsSource`.
116
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-authorizationcodegrantcredentialssource.html}
117
+ */
118
+ export type AuthorizationCodeGrantCredentialsSource = "PLAIN_CREDENTIALS";
119
+ /**
120
+ * Type definition for `AWS::QuickSight::ActionConnector.AuthorizationCodeGrantDetails`.
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-authorizationcodegrantdetails.html}
122
+ */
123
+ export type AuthorizationCodeGrantDetails = {
124
+ /**
125
+ * @minLength `1`
126
+ * @maxLength `8192`
127
+ * @pattern `^https://.*`
128
+ */
129
+ AuthorizationEndpoint: string;
130
+ /**
131
+ * @maxLength `1024`
132
+ */
133
+ ClientId: string;
134
+ /**
135
+ * @maxLength `2048`
136
+ */
137
+ ClientSecret: string;
138
+ /**
139
+ * @minLength `1`
140
+ * @maxLength `8192`
141
+ * @pattern `^https://.*`
142
+ */
143
+ TokenEndpoint: string;
144
+ };
145
+ /**
146
+ * Type definition for `AWS::QuickSight::ActionConnector.AuthorizationCodeGrantMetadata`.
147
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-authorizationcodegrantmetadata.html}
148
+ */
149
+ export type AuthorizationCodeGrantMetadata = {
150
+ AuthorizationCodeGrantCredentialsDetails?: AuthorizationCodeGrantCredentialsDetails;
151
+ AuthorizationCodeGrantCredentialsSource?: AuthorizationCodeGrantCredentialsSource;
152
+ /**
153
+ * @minLength `1`
154
+ * @maxLength `8192`
155
+ * @pattern `^https://.*`
156
+ */
157
+ BaseEndpoint: string;
158
+ /**
159
+ * @minLength `1`
160
+ * @maxLength `8192`
161
+ * @pattern `^https://.*`
162
+ */
163
+ RedirectUrl: string;
164
+ };
165
+ /**
166
+ * Type definition for `AWS::QuickSight::ActionConnector.BasicAuthConnectionMetadata`.
167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-basicauthconnectionmetadata.html}
168
+ */
169
+ export type BasicAuthConnectionMetadata = {
170
+ /**
171
+ * @minLength `1`
172
+ * @maxLength `8192`
173
+ * @pattern `^https://.*`
174
+ */
175
+ BaseEndpoint: string;
176
+ Password: string;
177
+ Username: string;
178
+ };
179
+ /**
180
+ * Type definition for `AWS::QuickSight::ActionConnector.ClientCredentialsDetails`.
181
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-clientcredentialsdetails.html}
182
+ */
183
+ export type ClientCredentialsDetails = {
184
+ ClientCredentialsGrantDetails: ClientCredentialsGrantDetails;
185
+ };
186
+ /**
187
+ * Type definition for `AWS::QuickSight::ActionConnector.ClientCredentialsGrantDetails`.
188
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-clientcredentialsgrantdetails.html}
189
+ */
190
+ export type ClientCredentialsGrantDetails = {
191
+ /**
192
+ * @maxLength `1024`
193
+ */
194
+ ClientId: string;
195
+ /**
196
+ * @maxLength `2048`
197
+ */
198
+ ClientSecret: string;
199
+ /**
200
+ * @minLength `1`
201
+ * @maxLength `8192`
202
+ * @pattern `^https://.*`
203
+ */
204
+ TokenEndpoint: string;
205
+ };
206
+ /**
207
+ * Type definition for `AWS::QuickSight::ActionConnector.ClientCredentialsGrantMetadata`.
208
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-clientcredentialsgrantmetadata.html}
209
+ */
210
+ export type ClientCredentialsGrantMetadata = {
211
+ /**
212
+ * @minLength `1`
213
+ * @maxLength `8192`
214
+ * @pattern `^https://.*`
215
+ */
216
+ BaseEndpoint: string;
217
+ ClientCredentialsDetails?: ClientCredentialsDetails;
218
+ ClientCredentialsSource?: ClientCredentialsSource;
219
+ };
220
+ /**
221
+ * Type definition for `AWS::QuickSight::ActionConnector.ClientCredentialsSource`.
222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-clientcredentialssource.html}
223
+ */
224
+ export type ClientCredentialsSource = "PLAIN_CREDENTIALS";
225
+ /**
226
+ * Type definition for `AWS::QuickSight::ActionConnector.ConnectionAuthType`.
227
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-connectionauthtype.html}
228
+ */
229
+ export type ConnectionAuthType = "BASIC" | "API_KEY" | "OAUTH2_CLIENT_CREDENTIALS" | "NONE" | "IAM" | "OAUTH2_AUTHORIZATION_CODE";
230
+ /**
231
+ * Type definition for `AWS::QuickSight::ActionConnector.IAMConnectionMetadata`.
232
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-iamconnectionmetadata.html}
233
+ */
234
+ export type IAMConnectionMetadata = {
235
+ /**
236
+ * @minLength `20`
237
+ * @maxLength `2048`
238
+ */
239
+ RoleArn: string;
240
+ };
241
+ /**
242
+ * Type definition for `AWS::QuickSight::ActionConnector.NoneConnectionMetadata`.
243
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-noneconnectionmetadata.html}
244
+ */
245
+ export type NoneConnectionMetadata = {
246
+ /**
247
+ * @minLength `1`
248
+ * @maxLength `8192`
249
+ * @pattern `^https://.*`
250
+ */
251
+ BaseEndpoint: string;
252
+ };
253
+ /**
254
+ * Type definition for `AWS::QuickSight::ActionConnector.ResourcePermission`.
255
+ * <p>Permission for the resource.</p>
256
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-resourcepermission.html}
257
+ */
258
+ export type ResourcePermission = {
259
+ /**
260
+ * <p>The IAM action to grant or revoke permissions on.</p>
261
+ * @minLength `1`
262
+ * @maxLength `20`
263
+ */
264
+ Actions: string[];
265
+ /**
266
+ * <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
267
+ following:</p>
268
+ <ul>
269
+ <li>
270
+ <p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
271
+ </li>
272
+ <li>
273
+ <p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
274
+ </li>
275
+ <li>
276
+ <p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
277
+ ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
278
+ (This is less common.) </p>
279
+ </li>
280
+ </ul>
281
+ * @minLength `1`
282
+ * @maxLength `256`
283
+ */
284
+ Principal: string;
285
+ };
286
+ /**
287
+ * Type definition for `AWS::QuickSight::ActionConnector.ResourceStatus`.
288
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-resourcestatus.html}
289
+ */
290
+ export type ResourceStatus = "CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "PENDING_UPDATE" | "DELETED";
291
+ /**
292
+ * Type definition for `AWS::QuickSight::ActionConnector.Tag`.
293
+ * <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
294
+ resource.</p>
295
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-actionconnector-tag.html}
296
+ */
297
+ export type Tag = {
298
+ /**
299
+ * <p>Tag key.</p>
300
+ * @minLength `1`
301
+ * @maxLength `128`
302
+ */
303
+ Key: string;
304
+ /**
305
+ * <p>Tag value.</p>
306
+ * @minLength `1`
307
+ * @maxLength `256`
308
+ */
309
+ Value: string;
310
+ };
311
+ /**
312
+ * Definition of the AWS::QuickSight::ActionConnector Resource Type.
313
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-actionconnector.html}
314
+ */
315
+ export declare class QuickSightActionConnector extends $Resource<"AWS::QuickSight::ActionConnector", QuickSightActionConnectorProperties, QuickSightActionConnectorAttributes> {
316
+ static readonly Type = "AWS::QuickSight::ActionConnector";
317
+ constructor(logicalId: string, properties: QuickSightActionConnectorProperties, options?: $ResourceOptions);
318
+ }
319
+ //# sourceMappingURL=AWS-QuickSight-ActionConnector.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of the AWS::QuickSight::ActionConnector Resource Type.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-actionconnector.html}
5
+ */
6
+ export class QuickSightActionConnector extends $Resource {
7
+ static Type = "AWS::QuickSight::ActionConnector";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, QuickSightActionConnector.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-QuickSight-ActionConnector.js.map
@@ -376,7 +376,7 @@ export type ResourceSpec = {
376
376
  /**
377
377
  * The ARN of the image version created on the instance.
378
378
  * @maxLength `256`
379
- * @pattern `^arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])/‍*[0-9]+$`
379
+ * @pattern `^(arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])/‍*[0-9]+|None)`
380
380
  */
381
381
  SageMakerImageVersionArn?: string;
382
382
  };
@@ -495,7 +495,7 @@ export type UserSettings = {
495
495
  CodeEditorAppSettings?: CodeEditorAppSettings;
496
496
  /**
497
497
  * @minLength `0`
498
- * @maxLength `2`
498
+ * @maxLength `10`
499
499
  */
500
500
  CustomFileSystemConfigs?: CustomFileSystemConfig[];
501
501
  CustomPosixUserConfig?: CustomPosixUserConfig;
@@ -65,12 +65,23 @@ export type AIAgentConfiguration = {
65
65
  EmailOverviewAIAgentConfiguration: EmailOverviewAIAgentConfiguration;
66
66
  } | {
67
67
  EmailGenerativeAnswerAIAgentConfiguration: EmailGenerativeAnswerAIAgentConfiguration;
68
+ } | {
69
+ OrchestrationAIAgentConfiguration: OrchestrationAIAgentConfiguration;
70
+ } | {
71
+ NoteTakingAIAgentConfiguration: NoteTakingAIAgentConfiguration;
72
+ } | {
73
+ CaseSummarizationAIAgentConfiguration: CaseSummarizationAIAgentConfiguration;
68
74
  };
69
75
  /**
70
76
  * Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
71
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
72
78
  */
73
- export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER";
79
+ export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER" | "ORCHESTRATION" | "NOTE_TAKING" | "CASE_SUMMARIZATION";
80
+ /**
81
+ * Type definition for `AWS::Wisdom::AIAgent.Annotation`.
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-annotation.html}
83
+ */
84
+ export type Annotation = Record<string, any>;
74
85
  /**
75
86
  * Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
76
87
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
@@ -117,6 +128,24 @@ export type AssociationConfiguration = {
117
128
  export type AssociationConfigurationData = {
118
129
  KnowledgeBaseAssociationConfigurationData: KnowledgeBaseAssociationConfigurationData;
119
130
  };
131
+ /**
132
+ * Type definition for `AWS::Wisdom::AIAgent.CaseSummarizationAIAgentConfiguration`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-casesummarizationaiagentconfiguration.html}
134
+ */
135
+ export type CaseSummarizationAIAgentConfiguration = {
136
+ /**
137
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
138
+ */
139
+ CaseSummarizationAIGuardrailId?: string;
140
+ /**
141
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
142
+ */
143
+ CaseSummarizationAIPromptId?: string;
144
+ /**
145
+ * @minLength `1`
146
+ */
147
+ Locale?: string;
148
+ };
120
149
  /**
121
150
  * Type definition for `AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration`.
122
151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailgenerativeansweraiagentconfiguration.html}
@@ -206,6 +235,49 @@ export type ManualSearchAIAgentConfiguration = {
206
235
  */
207
236
  Locale?: string;
208
237
  };
238
+ /**
239
+ * Type definition for `AWS::Wisdom::AIAgent.NoteTakingAIAgentConfiguration`.
240
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-notetakingaiagentconfiguration.html}
241
+ */
242
+ export type NoteTakingAIAgentConfiguration = {
243
+ /**
244
+ * @minLength `1`
245
+ */
246
+ Locale?: string;
247
+ /**
248
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
249
+ */
250
+ NoteTakingAIGuardrailId?: string;
251
+ /**
252
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
253
+ */
254
+ NoteTakingAIPromptId?: string;
255
+ };
256
+ /**
257
+ * Type definition for `AWS::Wisdom::AIAgent.OrchestrationAIAgentConfiguration`.
258
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html}
259
+ */
260
+ export type OrchestrationAIAgentConfiguration = {
261
+ /**
262
+ * @minLength `1`
263
+ * @maxLength `2048`
264
+ * @pattern `^arn:[a-z-]+?:[a-z-]+?:[a-z0-9-]*?:([0-9]{12})?:[a-zA-Z0-9-:/]+$`
265
+ */
266
+ ConnectInstanceArn?: string;
267
+ /**
268
+ * @minLength `1`
269
+ */
270
+ Locale?: string;
271
+ /**
272
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
273
+ */
274
+ OrchestrationAIGuardrailId?: string;
275
+ /**
276
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
277
+ */
278
+ OrchestrationAIPromptId: string;
279
+ ToolConfigurations?: ToolConfiguration[];
280
+ };
209
281
  /**
210
282
  * Type definition for `AWS::Wisdom::AIAgent.OrCondition`.
211
283
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orcondition.html}
@@ -267,6 +339,115 @@ export type TagFilter = {
267
339
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tags.html}
268
340
  */
269
341
  export type Tags = Record<string, string>;
342
+ /**
343
+ * Type definition for `AWS::Wisdom::AIAgent.ToolConfiguration`.
344
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html}
345
+ */
346
+ export type ToolConfiguration = {
347
+ Annotations?: Annotation;
348
+ /**
349
+ * @minLength `1`
350
+ */
351
+ Description?: string;
352
+ InputSchema?: Record<string, any>;
353
+ Instruction?: ToolInstruction;
354
+ OutputFilters?: ToolOutputFilter[];
355
+ OutputSchema?: Record<string, any>;
356
+ OverrideInputValues?: ToolOverrideInputValue[];
357
+ /**
358
+ * @minLength `1`
359
+ */
360
+ Title?: string;
361
+ /**
362
+ * @minLength `1`
363
+ */
364
+ ToolId?: string;
365
+ /**
366
+ * @minLength `1`
367
+ */
368
+ ToolName: string;
369
+ ToolType: ToolType;
370
+ UserInteractionConfiguration?: UserInteractionConfiguration;
371
+ };
372
+ /**
373
+ * Type definition for `AWS::Wisdom::AIAgent.ToolInstruction`.
374
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolinstruction.html}
375
+ */
376
+ export type ToolInstruction = {
377
+ Examples?: string[];
378
+ Instruction?: string;
379
+ };
380
+ /**
381
+ * Type definition for `AWS::Wisdom::AIAgent.ToolOutputConfiguration`.
382
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputconfiguration.html}
383
+ */
384
+ export type ToolOutputConfiguration = {
385
+ /**
386
+ * @minLength `1`
387
+ */
388
+ OutputVariableNameOverride?: string;
389
+ /**
390
+ * @minLength `1`
391
+ */
392
+ SessionDataNamespace?: string;
393
+ };
394
+ /**
395
+ * Type definition for `AWS::Wisdom::AIAgent.ToolOutputFilter`.
396
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputfilter.html}
397
+ */
398
+ export type ToolOutputFilter = {
399
+ /**
400
+ * @minLength `1`
401
+ */
402
+ JsonPath: string;
403
+ OutputConfiguration?: ToolOutputConfiguration;
404
+ };
405
+ /**
406
+ * Type definition for `AWS::Wisdom::AIAgent.ToolOverrideConstantInputValue`.
407
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideconstantinputvalue.html}
408
+ */
409
+ export type ToolOverrideConstantInputValue = {
410
+ Type: ToolOverrideInputValueType;
411
+ /**
412
+ * @minLength `1`
413
+ */
414
+ Value: string;
415
+ };
416
+ /**
417
+ * Type definition for `AWS::Wisdom::AIAgent.ToolOverrideInputValue`.
418
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvalue.html}
419
+ */
420
+ export type ToolOverrideInputValue = {
421
+ /**
422
+ * @minLength `1`
423
+ */
424
+ JsonPath: string;
425
+ Value: ToolOverrideInputValueConfiguration;
426
+ };
427
+ /**
428
+ * Type definition for `AWS::Wisdom::AIAgent.ToolOverrideInputValueConfiguration`.
429
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvalueconfiguration.html}
430
+ */
431
+ export type ToolOverrideInputValueConfiguration = {
432
+ Constant: ToolOverrideConstantInputValue;
433
+ };
434
+ /**
435
+ * Type definition for `AWS::Wisdom::AIAgent.ToolOverrideInputValueType`.
436
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvaluetype.html}
437
+ */
438
+ export type ToolOverrideInputValueType = "STRING" | "NUMBER" | "JSON_STRING";
439
+ /**
440
+ * Type definition for `AWS::Wisdom::AIAgent.ToolType`.
441
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooltype.html}
442
+ */
443
+ export type ToolType = "MODEL_CONTEXT_PROTOCOL" | "RETURN_TO_CONTROL" | "CONSTANT";
444
+ /**
445
+ * Type definition for `AWS::Wisdom::AIAgent.UserInteractionConfiguration`.
446
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-userinteractionconfiguration.html}
447
+ */
448
+ export type UserInteractionConfiguration = {
449
+ IsUserConfirmationRequired?: boolean;
450
+ };
270
451
  /**
271
452
  * Definition of AWS::Wisdom::AIAgent Resource Type
272
453
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagent.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.519",
3
+ "version": "0.1.521",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },