@awboost/cfn-resource-types 0.1.365 → 0.1.366

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.
@@ -66,8 +66,21 @@ export type B2BIPartnershipAttributes = {
66
66
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html}
67
67
  */
68
68
  export type CapabilityOptions = {
69
+ InboundEdi?: InboundEdiOptions;
69
70
  OutboundEdi?: OutboundEdiOptions;
70
71
  };
72
+ /**
73
+ * Type definition for `AWS::B2BI::Partnership.InboundEdiOptions`.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-inboundedioptions.html}
75
+ */
76
+ export type InboundEdiOptions = {
77
+ X12?: X12InboundEdiOptions;
78
+ };
79
+ /**
80
+ * Type definition for `AWS::B2BI::Partnership.LineTerminator`.
81
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-lineterminator.html}
82
+ */
83
+ export type LineTerminator = "CRLF" | "LF" | "CR";
71
84
  /**
72
85
  * Type definition for `AWS::B2BI::Partnership.OutboundEdiOptions`.
73
86
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-outboundedioptions.html}
@@ -91,6 +104,52 @@ export type Tag = {
91
104
  */
92
105
  Value: string;
93
106
  };
107
+ /**
108
+ * Type definition for `AWS::B2BI::Partnership.WrapFormat`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapformat.html}
110
+ */
111
+ export type WrapFormat = "SEGMENT" | "ONE_LINE" | "LINE_LENGTH";
112
+ /**
113
+ * Type definition for `AWS::B2BI::Partnership.WrapOptions`.
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapoptions.html}
115
+ */
116
+ export type WrapOptions = {
117
+ /**
118
+ * @min `1`
119
+ */
120
+ LineLength?: number;
121
+ LineTerminator?: LineTerminator;
122
+ WrapBy?: WrapFormat;
123
+ };
124
+ /**
125
+ * Type definition for `AWS::B2BI::Partnership.X12AcknowledgmentOptions`.
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12acknowledgmentoptions.html}
127
+ */
128
+ export type X12AcknowledgmentOptions = {
129
+ FunctionalAcknowledgment: X12FunctionalAcknowledgment;
130
+ TechnicalAcknowledgment: X12TechnicalAcknowledgment;
131
+ };
132
+ /**
133
+ * Type definition for `AWS::B2BI::Partnership.X12ControlNumbers`.
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html}
135
+ */
136
+ export type X12ControlNumbers = {
137
+ /**
138
+ * @min `1`
139
+ * @max `999999999`
140
+ */
141
+ StartingFunctionalGroupControlNumber?: number;
142
+ /**
143
+ * @min `1`
144
+ * @max `999999999`
145
+ */
146
+ StartingInterchangeControlNumber?: number;
147
+ /**
148
+ * @min `1`
149
+ * @max `999999999`
150
+ */
151
+ StartingTransactionSetControlNumber?: number;
152
+ };
94
153
  /**
95
154
  * Type definition for `AWS::B2BI::Partnership.X12Delimiters`.
96
155
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12delimiters.html}
@@ -121,7 +180,13 @@ export type X12Delimiters = {
121
180
  */
122
181
  export type X12Envelope = {
123
182
  Common?: X12OutboundEdiHeaders;
183
+ WrapOptions?: WrapOptions;
124
184
  };
185
+ /**
186
+ * Type definition for `AWS::B2BI::Partnership.X12FunctionalAcknowledgment`.
187
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12functionalacknowledgment.html}
188
+ */
189
+ export type X12FunctionalAcknowledgment = "DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS" | "GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP";
125
190
  /**
126
191
  * Type definition for `AWS::B2BI::Partnership.X12FunctionalGroupHeaders`.
127
192
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12functionalgroupheaders.html}
@@ -146,6 +211,18 @@ export type X12FunctionalGroupHeaders = {
146
211
  */
147
212
  ResponsibleAgencyCode?: string;
148
213
  };
214
+ /**
215
+ * Type definition for `AWS::B2BI::Partnership.X12GS05TimeFormat`.
216
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12gs05timeformat.html}
217
+ */
218
+ export type X12GS05TimeFormat = "HHMM" | "HHMMSS" | "HHMMSSDD";
219
+ /**
220
+ * Type definition for `AWS::B2BI::Partnership.X12InboundEdiOptions`.
221
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12inboundedioptions.html}
222
+ */
223
+ export type X12InboundEdiOptions = {
224
+ AcknowledgmentOptions?: X12AcknowledgmentOptions;
225
+ };
149
226
  /**
150
227
  * Type definition for `AWS::B2BI::Partnership.X12InterchangeControlHeaders`.
151
228
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12interchangecontrolheaders.html}
@@ -198,11 +275,18 @@ export type X12InterchangeControlHeaders = {
198
275
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html}
199
276
  */
200
277
  export type X12OutboundEdiHeaders = {
278
+ ControlNumbers?: X12ControlNumbers;
201
279
  Delimiters?: X12Delimiters;
202
280
  FunctionalGroupHeaders?: X12FunctionalGroupHeaders;
281
+ Gs05TimeFormat?: X12GS05TimeFormat;
203
282
  InterchangeControlHeaders?: X12InterchangeControlHeaders;
204
283
  ValidateEdi?: boolean;
205
284
  };
285
+ /**
286
+ * Type definition for `AWS::B2BI::Partnership.X12TechnicalAcknowledgment`.
287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12technicalacknowledgment.html}
288
+ */
289
+ export type X12TechnicalAcknowledgment = "DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS";
206
290
  /**
207
291
  * Definition of AWS::B2BI::Partnership Resource Type
208
292
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html}
@@ -55,6 +55,13 @@ export type B2BITransformerAttributes = {
55
55
  */
56
56
  TransformerId: string;
57
57
  };
58
+ /**
59
+ * Type definition for `AWS::B2BI::Transformer.AdvancedOptions`.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-advancedoptions.html}
61
+ */
62
+ export type AdvancedOptions = {
63
+ X12?: X12AdvancedOptions;
64
+ };
58
65
  /**
59
66
  * Type definition for `AWS::B2BI::Transformer.EdiType`.
60
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-editype.html}
@@ -84,6 +91,7 @@ export type FromFormat = "X12";
84
91
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-inputconversion.html}
85
92
  */
86
93
  export type InputConversion = {
94
+ AdvancedOptions?: AdvancedOptions;
87
95
  FormatOptions?: FormatOptions;
88
96
  FromFormat: FromFormat;
89
97
  };
@@ -166,6 +174,13 @@ export type ToFormat = "X12";
166
174
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-transformerstatus.html}
167
175
  */
168
176
  export type TransformerStatus = "active" | "inactive";
177
+ /**
178
+ * Type definition for `AWS::B2BI::Transformer.X12AdvancedOptions`.
179
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12advancedoptions.html}
180
+ */
181
+ export type X12AdvancedOptions = {
182
+ SplitOptions?: X12SplitOptions;
183
+ };
169
184
  /**
170
185
  * Type definition for `AWS::B2BI::Transformer.X12Details`.
171
186
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12details.html}
@@ -174,6 +189,18 @@ export type X12Details = {
174
189
  TransactionSet?: X12TransactionSet;
175
190
  Version?: X12Version;
176
191
  };
192
+ /**
193
+ * Type definition for `AWS::B2BI::Transformer.X12SplitBy`.
194
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitby.html}
195
+ */
196
+ export type X12SplitBy = "NONE" | "TRANSACTION";
197
+ /**
198
+ * Type definition for `AWS::B2BI::Transformer.X12SplitOptions`.
199
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html}
200
+ */
201
+ export type X12SplitOptions = {
202
+ SplitBy?: X12SplitBy;
203
+ };
177
204
  /**
178
205
  * Type definition for `AWS::B2BI::Transformer.X12TransactionSet`.
179
206
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12transactionset.html}
@@ -69,7 +69,7 @@ export type EndpointEventBus = {
69
69
  /**
70
70
  * @minLength `1`
71
71
  * @maxLength `512`
72
- * @pattern `^arn:aws[a-z-]*:events:[a-z]{2}-[a-z-]+-\d+:\d{12}:event-bus/[\w.-]+$`
72
+ * @pattern `^arn:aws[a-z-]*:events:[a-z]+-[a-z-]+-\d+:\d{12}:event-bus/[\w.-]+$`
73
73
  */
74
74
  EventBusArn: string;
75
75
  };
@@ -0,0 +1,96 @@
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 type definition for AWS::FSx::S3AccessPointAttachment
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html}
6
+ */
7
+ export type FSxS3AccessPointAttachmentProperties = {
8
+ /**
9
+ * The Name of the S3AccessPointAttachment
10
+ * @minLength `3`
11
+ * @maxLength `50`
12
+ * @pattern `^(?=[a-z0-9])[a-z0-9-]{1,48}[a-z0-9]$`
13
+ */
14
+ Name: string;
15
+ OpenZFSConfiguration: S3AccessPointOpenZFSConfiguration;
16
+ S3AccessPoint?: S3AccessPoint;
17
+ Type: "OPENZFS";
18
+ };
19
+ /**
20
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.FileSystemGID`.
21
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-filesystemgid.html}
22
+ */
23
+ export type FileSystemGID = {
24
+ /**
25
+ * @min `0`
26
+ * @max `4294967295`
27
+ */
28
+ Gid: number;
29
+ };
30
+ /**
31
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.OpenZFSFileSystemIdentity`.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html}
33
+ */
34
+ export type OpenZFSFileSystemIdentity = {
35
+ PosixUser: OpenZFSPosixFileSystemUser;
36
+ Type: "POSIX";
37
+ };
38
+ /**
39
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.OpenZFSPosixFileSystemUser`.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsposixfilesystemuser.html}
41
+ */
42
+ export type OpenZFSPosixFileSystemUser = {
43
+ /**
44
+ * @min `0`
45
+ * @max `4294967295`
46
+ */
47
+ Gid: number;
48
+ SecondaryGids?: FileSystemGID[];
49
+ /**
50
+ * @min `0`
51
+ * @max `4294967295`
52
+ */
53
+ Uid: number;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPoint`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspoint.html}
58
+ */
59
+ export type S3AccessPoint = {
60
+ Policy?: Record<string, any> | string;
61
+ VpcConfiguration?: S3AccessPointVpcConfiguration;
62
+ };
63
+ /**
64
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPointOpenZFSConfiguration`.
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html}
66
+ */
67
+ export type S3AccessPointOpenZFSConfiguration = {
68
+ FileSystemIdentity: OpenZFSFileSystemIdentity;
69
+ /**
70
+ * @minLength `23`
71
+ * @maxLength `23`
72
+ * @pattern `^(fsvol-[0-9a-f]{17,})$`
73
+ */
74
+ VolumeId: string;
75
+ };
76
+ /**
77
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPointVpcConfiguration`.
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointvpcconfiguration.html}
79
+ */
80
+ export type S3AccessPointVpcConfiguration = {
81
+ /**
82
+ * @minLength `12`
83
+ * @maxLength `21`
84
+ * @pattern `^(vpc-[0-9a-f]{8,})$`
85
+ */
86
+ VpcId: string;
87
+ };
88
+ /**
89
+ * Resource type definition for AWS::FSx::S3AccessPointAttachment
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html}
91
+ */
92
+ export declare class FSxS3AccessPointAttachment extends $Resource<"AWS::FSx::S3AccessPointAttachment", FSxS3AccessPointAttachmentProperties, Record<string, never>> {
93
+ static readonly Type = "AWS::FSx::S3AccessPointAttachment";
94
+ constructor(logicalId: string, properties: FSxS3AccessPointAttachmentProperties, options?: $ResourceOptions);
95
+ }
96
+ //# sourceMappingURL=AWS-FSx-S3AccessPointAttachment.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for AWS::FSx::S3AccessPointAttachment
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html}
5
+ */
6
+ export class FSxS3AccessPointAttachment extends $Resource {
7
+ static Type = "AWS::FSx::S3AccessPointAttachment";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, FSxS3AccessPointAttachment.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-FSx-S3AccessPointAttachment.js.map
@@ -85,6 +85,11 @@ export type KMSKeyProperties = {
85
85
  + Other asymmetric elliptic curve key pairs (signing and verification)
86
86
  + ``ECC_SECG_P256K1`` (secp256k1), commonly used for cryptocurrencies.
87
87
 
88
+ + Asymmetric ML-DSA key pairs (signing and verification)
89
+ + ``ML_DSA_44``
90
+ + ``ML_DSA_65``
91
+ + ``ML_DSA_87``
92
+
88
93
  + SM2 key pairs (encryption and decryption *or* signing and verification *or* deriving shared secrets)
89
94
  + ``SM2`` (China Regions only)
90
95
  */
@@ -97,7 +102,8 @@ export type KMSKeyProperties = {
97
102
  + For HMAC KMS keys (symmetric), specify ``GENERATE_VERIFY_MAC``.
98
103
  + For asymmetric KMS keys with RSA key pairs, specify ``ENCRYPT_DECRYPT`` or ``SIGN_VERIFY``.
99
104
  + For asymmetric KMS keys with NIST-recommended elliptic curve key pairs, specify ``SIGN_VERIFY`` or ``KEY_AGREEMENT``.
100
- + For asymmetric KMS keys with ``ECC_SECG_P256K1`` key pairs specify ``SIGN_VERIFY``.
105
+ + For asymmetric KMS keys with ``ECC_SECG_P256K1`` key pairs, specify ``SIGN_VERIFY``.
106
+ + For asymmetric KMS keys with ML-DSA key pairs, specify ``SIGN_VERIFY``.
101
107
  + For asymmetric KMS keys with SM2 key pairs (China Regions only), specify ``ENCRYPT_DECRYPT``, ``SIGN_VERIFY``, or ``KEY_AGREEMENT``.
102
108
  */
103
109
  KeyUsage?: "ENCRYPT_DECRYPT" | "SIGN_VERIFY" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT";
@@ -115,7 +121,8 @@ export type KMSKeyProperties = {
115
121
  * The source of the key material for the KMS key. You cannot change the origin after you create the KMS key. The default is ``AWS_KMS``, which means that KMS creates the key material.
116
122
  To [create a KMS key with no key material](https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys-create-cmk.html) (for imported key material), set this value to ``EXTERNAL``. For more information about importing key material into KMS, see [Importing Key Material](https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html) in the *Developer Guide*.
117
123
  You can ignore ``ENABLED`` when Origin is ``EXTERNAL``. When a KMS key with Origin ``EXTERNAL`` is created, the key state is ``PENDING_IMPORT`` and ``ENABLED`` is ``false``. After you import the key material, ``ENABLED`` updated to ``true``. The KMS key can then be used for Cryptographic Operations.
118
- CFN doesn't support creating an ``Origin`` parameter of the ``AWS_CLOUDHSM`` or ``EXTERNAL_KEY_STORE`` values.
124
+ + CFN doesn't support creating an ``Origin`` parameter of the ``AWS_CLOUDHSM`` or ``EXTERNAL_KEY_STORE`` values.
125
+ + ``EXTERNAL`` is not supported for ML-DSA keys.
119
126
  */
120
127
  Origin?: "AWS_KMS" | "EXTERNAL";
121
128
  /**
@@ -210,6 +210,7 @@ export type BotLocale = {
210
210
  * @maxLength `200`
211
211
  */
212
212
  Description?: string;
213
+ GenerativeAISettings?: GenerativeAISettings;
213
214
  /**
214
215
  * @maxLength `1000`
215
216
  */
@@ -530,6 +531,31 @@ export type FulfillmentUpdatesSpecification = {
530
531
  TimeoutInSeconds?: number;
531
532
  UpdateResponse?: FulfillmentUpdateResponseSpecification;
532
533
  };
534
+ /**
535
+ * Type definition for `AWS::Lex::Bot.GenerativeAISettings`.
536
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-generativeaisettings.html}
537
+ */
538
+ export type GenerativeAISettings = {
539
+ BuildtimeSettings?: {
540
+ DescriptiveBotBuilderSpecification?: {
541
+ BedrockModelSpecification?: BedrockModelSpecification;
542
+ Enabled: boolean;
543
+ };
544
+ SampleUtteranceGenerationSpecification?: {
545
+ BedrockModelSpecification?: BedrockModelSpecification;
546
+ Enabled: boolean;
547
+ };
548
+ };
549
+ RuntimeSettings?: {
550
+ NluImprovementSpecification?: {
551
+ Enabled: boolean;
552
+ };
553
+ SlotResolutionImprovementSpecification?: {
554
+ BedrockModelSpecification?: BedrockModelSpecification;
555
+ Enabled: boolean;
556
+ };
557
+ };
558
+ };
533
559
  /**
534
560
  * Type definition for `AWS::Lex::Bot.GrammarSlotTypeSetting`.
535
561
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-grammarslottypesetting.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.365",
3
+ "version": "0.1.366",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },