@awboost/cfn-resource-types 0.1.295 → 0.1.297

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.
@@ -19,6 +19,12 @@ export type AmplifyAppProperties = {
19
19
  */
20
20
  BuildSpec?: string;
21
21
  CacheConfig?: CacheConfig;
22
+ /**
23
+ * @minLength `0`
24
+ * @maxLength `1000`
25
+ * @pattern `(?s).*`
26
+ */
27
+ ComputeRoleArn?: string;
22
28
  /**
23
29
  * @minLength `0`
24
30
  * @maxLength `25000`
@@ -25,6 +25,12 @@ export type AmplifyBranchProperties = {
25
25
  * @pattern `(?s).+`
26
26
  */
27
27
  BuildSpec?: string;
28
+ /**
29
+ * @minLength `0`
30
+ * @maxLength `1000`
31
+ * @pattern `(?s).*`
32
+ */
33
+ ComputeRoleArn?: string;
28
34
  /**
29
35
  * @maxLength `1000`
30
36
  * @pattern `(?s).*`
@@ -33,6 +39,7 @@ export type AmplifyBranchProperties = {
33
39
  EnableAutoBuild?: boolean;
34
40
  EnablePerformanceMode?: boolean;
35
41
  EnablePullRequestPreview?: boolean;
42
+ EnableSkewProtection?: boolean;
36
43
  EnvironmentVariables?: EnvironmentVariable[];
37
44
  /**
38
45
  * @maxLength `255`
@@ -29,6 +29,7 @@ export type ApiGatewayDomainNameAttributes = {
29
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-endpointconfiguration.html}
30
30
  */
31
31
  export type EndpointConfiguration = {
32
+ IpAddressType?: string;
32
33
  Types?: string[];
33
34
  };
34
35
  /**
@@ -60,6 +60,7 @@ export type ApiGatewayRestApiAttributes = {
60
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-endpointconfiguration.html}
61
61
  */
62
62
  export type EndpointConfiguration = {
63
+ IpAddressType?: string;
63
64
  Types?: string[];
64
65
  VpcEndpointIds?: string[];
65
66
  };
@@ -58,7 +58,7 @@ export type EventFilter = {
58
58
  * The source of the events.
59
59
  * @minLength `1`
60
60
  * @maxLength `256`
61
- * @pattern `^aws\.partner\/.*$`
61
+ * @pattern `^aws\.(partner\/.*|cases)$`
62
62
  */
63
63
  Source: string;
64
64
  };
@@ -27,7 +27,7 @@ export type CloudFormationStackProperties = {
27
27
  * @maxLength `50`
28
28
  */
29
29
  Tags?: Tag[];
30
- TemplateBody?: Record<string, any>;
30
+ TemplateBody?: Record<string, any> | string;
31
31
  /**
32
32
  * @minLength `1`
33
33
  * @maxLength `1024`
@@ -315,6 +315,32 @@ export type ElasticInferenceAccelerator = {
315
315
  */
316
316
  Type: string;
317
317
  };
318
+ /**
319
+ * Type definition for `AWS::EC2::Instance.EnaSrdSpecification`.
320
+ * Specifies the ENA Express settings for the network interface that's attached to the instance.
321
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-enasrdspecification.html}
322
+ */
323
+ export type EnaSrdSpecification = {
324
+ /**
325
+ * Specifies whether ENA Express is enabled for the network interface when you launch an instance.
326
+ */
327
+ EnaSrdEnabled?: boolean;
328
+ /**
329
+ * Contains ENA Express settings for UDP network traffic for the network interface that's attached to the instance.
330
+ */
331
+ EnaSrdUdpSpecification?: EnaSrdUdpSpecification;
332
+ };
333
+ /**
334
+ * Type definition for `AWS::EC2::Instance.EnaSrdUdpSpecification`.
335
+ * Contains ENA Express settings for UDP network traffic for the network interface that's attached to the instance.
336
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-enasrdudpspecification.html}
337
+ */
338
+ export type EnaSrdUdpSpecification = {
339
+ /**
340
+ * Indicates whether UDP traffic uses ENA Express for your instance.
341
+ */
342
+ EnaSrdUdpEnabled?: boolean;
343
+ };
318
344
  /**
319
345
  * Type definition for `AWS::EC2::Instance.InstanceIpv6Address`.
320
346
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-instanceipv6address.html}
@@ -378,6 +404,10 @@ export type NetworkInterface = {
378
404
  * The position of the network interface in the attachment order. A primary network interface has a device index of 0.
379
405
  */
380
406
  DeviceIndex: string;
407
+ /**
408
+ * Specifies the ENA Express settings for the network interface that's attached to the instance.
409
+ */
410
+ EnaSrdSpecification?: EnaSrdSpecification;
381
411
  /**
382
412
  * The IDs of the security groups for the network interface.
383
413
  */
@@ -286,7 +286,7 @@ export type ListenerAttribute = {
286
286
  */
287
287
  export type MutualAuthentication = {
288
288
  /**
289
- * Indicates whether trust store CA certificate names are advertised. The default value is ``off``.
289
+ * Indicates whether trust store CA certificate names are advertised.
290
290
  */
291
291
  AdvertiseTrustStoreCaNames?: string;
292
292
  /**
@@ -294,7 +294,7 @@ export type MutualAuthentication = {
294
294
  */
295
295
  IgnoreClientCertificateExpiry?: boolean;
296
296
  /**
297
- * The client certificate handling method. The possible values are ``off``, ``passthrough``, and ``verify``. The default value is ``off``.
297
+ * The client certificate handling method. Options are ``off``, ``passthrough`` or ``verify``. The default value is ``off``.
298
298
  */
299
299
  Mode?: string;
300
300
  /**
@@ -0,0 +1,100 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource schema for AWS::IoTSiteWise::Dataset.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
6
+ */
7
+ export type IoTSiteWiseDatasetProperties = {
8
+ /**
9
+ * A description about the dataset, and its functionality.
10
+ */
11
+ DatasetDescription?: string;
12
+ /**
13
+ * The name of the dataset.
14
+ */
15
+ DatasetName: string;
16
+ /**
17
+ * The data source for the dataset.
18
+ */
19
+ DatasetSource: DatasetSource;
20
+ /**
21
+ * An array of key-value pairs to apply to this resource.
22
+ */
23
+ Tags?: Tag[];
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::IoTSiteWise::Dataset`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#aws-resource-iotsitewise-dataset-return-values}
28
+ */
29
+ export type IoTSiteWiseDatasetAttributes = {
30
+ /**
31
+ * The ARN of the dataset.
32
+ */
33
+ DatasetArn: string;
34
+ /**
35
+ * The ID of the dataset.
36
+ * @minLength `36`
37
+ * @maxLength `36`
38
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
39
+ */
40
+ DatasetId: string;
41
+ };
42
+ /**
43
+ * Type definition for `AWS::IoTSiteWise::Dataset.DatasetSource`.
44
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-datasetsource.html}
45
+ */
46
+ export type DatasetSource = {
47
+ /**
48
+ * The details of the dataset source associated with the dataset.
49
+ */
50
+ SourceDetail?: SourceDetail;
51
+ /**
52
+ * The format of the dataset source associated with the dataset.
53
+ */
54
+ SourceFormat: "KNOWLEDGE_BASE";
55
+ /**
56
+ * The type of data source for the dataset.
57
+ */
58
+ SourceType: "KENDRA";
59
+ };
60
+ /**
61
+ * Type definition for `AWS::IoTSiteWise::Dataset.KendraSourceDetail`.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html}
63
+ */
64
+ export type KendraSourceDetail = {
65
+ /**
66
+ * The knowledgeBaseArn details for the Kendra dataset source.
67
+ */
68
+ KnowledgeBaseArn: string;
69
+ /**
70
+ * The roleARN details for the Kendra dataset source.
71
+ */
72
+ RoleArn: string;
73
+ };
74
+ /**
75
+ * Type definition for `AWS::IoTSiteWise::Dataset.SourceDetail`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-sourcedetail.html}
77
+ */
78
+ export type SourceDetail = {
79
+ /**
80
+ * Contains details about the Kendra dataset source.
81
+ */
82
+ Kendra?: KendraSourceDetail;
83
+ };
84
+ /**
85
+ * Type definition for `AWS::IoTSiteWise::Dataset.Tag`.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-tag.html}
87
+ */
88
+ export type Tag = {
89
+ Key: string;
90
+ Value: string;
91
+ };
92
+ /**
93
+ * Resource schema for AWS::IoTSiteWise::Dataset.
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
95
+ */
96
+ export declare class IoTSiteWiseDataset extends $Resource<"AWS::IoTSiteWise::Dataset", IoTSiteWiseDatasetProperties, IoTSiteWiseDatasetAttributes> {
97
+ static readonly Type = "AWS::IoTSiteWise::Dataset";
98
+ constructor(logicalId: string, properties: IoTSiteWiseDatasetProperties, options?: $ResourceOptions);
99
+ }
100
+ //# sourceMappingURL=AWS-IoTSiteWise-Dataset.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource schema for AWS::IoTSiteWise::Dataset.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
5
+ */
6
+ export class IoTSiteWiseDataset extends $Resource {
7
+ static Type = "AWS::IoTSiteWise::Dataset";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, IoTSiteWiseDataset.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-IoTSiteWise-Dataset.js.map
@@ -33,7 +33,7 @@ export type RUMAppMonitorProperties = {
33
33
  * @minLength `1`
34
34
  * @maxLength `5`
35
35
  */
36
- DomainList?: unknown[];
36
+ DomainList?: string[];
37
37
  /**
38
38
  * A name for the app monitor
39
39
  * @minLength `1`
@@ -12,6 +12,10 @@ export type Route53RecoveryControlClusterProperties = {
12
12
  * @maxLength `64`
13
13
  */
14
14
  Name: string;
15
+ /**
16
+ * Cluster supports IPv4 endpoints and Dual-stack IPv4 and IPv6 endpoints. NetworkType can be IPV4 or DUALSTACK.
17
+ */
18
+ NetworkType?: "IPV4" | "DUALSTACK";
15
19
  /**
16
20
  * A collection of tags associated with a resource
17
21
  */
@@ -73,7 +73,7 @@ export type CodeEditorAppSettings = {
73
73
  /**
74
74
  * A list of custom images for use for CodeEditor apps.
75
75
  * @minLength `0`
76
- * @maxLength `30`
76
+ * @maxLength `200`
77
77
  */
78
78
  CustomImages?: CustomImage[];
79
79
  /**
@@ -257,7 +257,7 @@ export type JupyterLabAppSettings = {
257
257
  /**
258
258
  * A list of custom images available for use for JupyterLab apps
259
259
  * @minLength `0`
260
- * @maxLength `30`
260
+ * @maxLength `200`
261
261
  */
262
262
  CustomImages?: CustomImage[];
263
263
  /**
@@ -10,6 +10,11 @@ export type SystemsManagerSAPApplicationProperties = {
10
10
  */
11
11
  ApplicationId: string;
12
12
  ApplicationType: "HANA" | "SAP_ABAP";
13
+ /**
14
+ * This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.
15
+ * @minLength `1`
16
+ */
17
+ ComponentsInfo?: ComponentInfo[];
13
18
  /**
14
19
  * @minLength `1`
15
20
  */
@@ -47,6 +52,21 @@ export type SystemsManagerSAPApplicationAttributes = {
47
52
  */
48
53
  Arn: string;
49
54
  };
55
+ /**
56
+ * Type definition for `AWS::SystemsManagerSAP::Application.ComponentInfo`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html}
58
+ */
59
+ export type ComponentInfo = {
60
+ ComponentType?: "HANA" | "HANA_NODE" | "ABAP" | "ASCS" | "DIALOG" | "WEBDISP" | "WD" | "ERS";
61
+ /**
62
+ * @pattern `^i-[\w\d]{8}$|^i-[\w\d]{17}$`
63
+ */
64
+ Ec2InstanceId?: string;
65
+ /**
66
+ * @pattern `[A-Z][A-Z0-9]{2}`
67
+ */
68
+ Sid?: string;
69
+ };
50
70
  /**
51
71
  * Type definition for `AWS::SystemsManagerSAP::Application.Credential`.
52
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-credential.html}
@@ -373,6 +373,10 @@ export type FieldToMatch = {
373
373
  SingleQueryArgument?: {
374
374
  Name: string;
375
375
  };
376
+ /**
377
+ * The path component of the URI Fragment. This is the part of a web request that identifies a fragment uri, for example, /abcd#introduction
378
+ */
379
+ UriFragment?: UriFragment;
376
380
  /**
377
381
  * The path component of the URI of a web request. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
378
382
  */
@@ -990,6 +994,14 @@ export type TextTransformation = {
990
994
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-texttransformationtype.html}
991
995
  */
992
996
  export type TextTransformationType = "NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE" | "BASE64_DECODE" | "HEX_DECODE" | "MD5" | "REPLACE_COMMENTS" | "ESCAPE_SEQ_DECODE" | "SQL_HEX_DECODE" | "CSS_DECODE" | "JS_DECODE" | "NORMALIZE_PATH" | "NORMALIZE_PATH_WIN" | "REMOVE_NULLS" | "REPLACE_NULLS" | "BASE64_DECODE_EXT" | "URL_DECODE_UNI" | "UTF8_TO_UNICODE";
997
+ /**
998
+ * Type definition for `AWS::WAFv2::RuleGroup.UriFragment`.
999
+ * The path component of the URI Fragment. This is the part of a web request that identifies a fragment uri, for example, /abcd#introduction
1000
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-urifragment.html}
1001
+ */
1002
+ export type UriFragment = {
1003
+ FallbackBehavior?: "MATCH" | "NO_MATCH";
1004
+ };
993
1005
  /**
994
1006
  * Type definition for `AWS::WAFv2::RuleGroup.VisibilityConfig`.
995
1007
  * Visibility Metric of the RuleGroup.
@@ -498,6 +498,10 @@ export type FieldToMatch = {
498
498
  SingleQueryArgument?: {
499
499
  Name: string;
500
500
  };
501
+ /**
502
+ * The path component of the URI Fragment. This is the part of a web request that identifies a fragment uri, for example, /abcd#introduction
503
+ */
504
+ UriFragment?: UriFragment;
501
505
  /**
502
506
  * The path component of the URI of a web request. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
503
507
  */
@@ -1395,6 +1399,14 @@ export type TextTransformation = {
1395
1399
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-texttransformationtype.html}
1396
1400
  */
1397
1401
  export type TextTransformationType = "NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE" | "BASE64_DECODE" | "HEX_DECODE" | "MD5" | "REPLACE_COMMENTS" | "ESCAPE_SEQ_DECODE" | "SQL_HEX_DECODE" | "CSS_DECODE" | "JS_DECODE" | "NORMALIZE_PATH" | "NORMALIZE_PATH_WIN" | "REMOVE_NULLS" | "REPLACE_NULLS" | "BASE64_DECODE_EXT" | "URL_DECODE_UNI" | "UTF8_TO_UNICODE";
1402
+ /**
1403
+ * Type definition for `AWS::WAFv2::WebACL.UriFragment`.
1404
+ * The path component of the URI Fragment. This is the part of a web request that identifies a fragment uri, for example, /abcd#introduction
1405
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-urifragment.html}
1406
+ */
1407
+ export type UriFragment = {
1408
+ FallbackBehavior?: "MATCH" | "NO_MATCH";
1409
+ };
1398
1410
  /**
1399
1411
  * Type definition for `AWS::WAFv2::WebACL.VisibilityConfig`.
1400
1412
  * Visibility Metric of the WebACL.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.295",
3
+ "version": "0.1.297",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },