@awboost/cfn-resource-types 0.1.296 → 0.1.298

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.
@@ -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
  };
@@ -115,10 +115,20 @@ export type BedrockGuardrailAttributes = {
115
115
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilterconfig.html}
116
116
  */
117
117
  export type ContentFilterConfig = {
118
+ /**
119
+ * List of modalities
120
+ * @minLength `1`
121
+ */
122
+ InputModalities?: Modality[];
118
123
  /**
119
124
  * Strength for filters
120
125
  */
121
126
  InputStrength: FilterStrength;
127
+ /**
128
+ * List of modalities
129
+ * @minLength `1`
130
+ */
131
+ OutputModalities?: Modality[];
122
132
  /**
123
133
  * Strength for filters
124
134
  */
@@ -210,6 +220,12 @@ export type ManagedWordsConfig = {
210
220
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-managedwordstype.html}
211
221
  */
212
222
  export type ManagedWordsType = "PROFANITY";
223
+ /**
224
+ * Type definition for `AWS::Bedrock::Guardrail.Modality`.
225
+ * Modality for filters
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-modality.html}
227
+ */
228
+ export type Modality = "TEXT" | "IMAGE";
213
229
  /**
214
230
  * Type definition for `AWS::Bedrock::Guardrail.PiiEntityConfig`.
215
231
  * Pii entity configuration.
@@ -139,6 +139,7 @@ export type ProjectBuildBatchConfig = {
139
139
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html}
140
140
  */
141
141
  export type ProjectCache = {
142
+ CacheNamespace?: string;
142
143
  Location?: string;
143
144
  Modes?: string[];
144
145
  Type: string;
@@ -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
  */
@@ -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
@@ -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.296",
3
+ "version": "0.1.298",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },