@awboost/cfn-resource-types 0.1.159 → 0.1.160
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.
- package/lib/AWS-B2BI-Capability.d.ts +6 -0
- package/lib/AWS-B2BI-Partnership.d.ts +128 -1
- package/lib/AWS-B2BI-Transformer.d.ts +89 -4
- package/lib/AWS-CloudFormation-CustomResource.d.ts +1 -0
- package/lib/AWS-EMR-Cluster.d.ts +37 -0
- package/lib/AWS-EMR-InstanceFleetConfig.d.ts +37 -0
- package/lib/AWS-IoT-DomainConfiguration.d.ts +14 -0
- package/lib/AWS-S3-Bucket.d.ts +1 -0
- package/package.json +1 -1
|
@@ -49,6 +49,11 @@ export type B2BICapabilityAttributes = {
|
|
|
49
49
|
export type CapabilityConfiguration = {
|
|
50
50
|
Edi: EdiConfiguration;
|
|
51
51
|
};
|
|
52
|
+
/**
|
|
53
|
+
* Type definition for `AWS::B2BI::Capability.CapabilityDirection`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-capabilitydirection.html}
|
|
55
|
+
*/
|
|
56
|
+
export type CapabilityDirection = "INBOUND" | "OUTBOUND";
|
|
52
57
|
/**
|
|
53
58
|
* Type definition for `AWS::B2BI::Capability.CapabilityType`.
|
|
54
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-capabilitytype.html}
|
|
@@ -59,6 +64,7 @@ export type CapabilityType = "edi";
|
|
|
59
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-ediconfiguration.html}
|
|
60
65
|
*/
|
|
61
66
|
export type EdiConfiguration = {
|
|
67
|
+
CapabilityDirection?: CapabilityDirection;
|
|
62
68
|
InputLocation: S3Location;
|
|
63
69
|
OutputLocation: S3Location;
|
|
64
70
|
/**
|
|
@@ -5,7 +5,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html}
|
|
6
6
|
*/
|
|
7
7
|
export type B2BIPartnershipProperties = {
|
|
8
|
-
Capabilities
|
|
8
|
+
Capabilities: string[];
|
|
9
|
+
CapabilityOptions?: CapabilityOptions;
|
|
9
10
|
/**
|
|
10
11
|
* @minLength `5`
|
|
11
12
|
* @maxLength `254`
|
|
@@ -60,6 +61,20 @@ export type B2BIPartnershipAttributes = {
|
|
|
60
61
|
*/
|
|
61
62
|
TradingPartnerId: string;
|
|
62
63
|
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::B2BI::Partnership.CapabilityOptions`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html}
|
|
67
|
+
*/
|
|
68
|
+
export type CapabilityOptions = {
|
|
69
|
+
OutboundEdi?: OutboundEdiOptions;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::B2BI::Partnership.OutboundEdiOptions`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-outboundedioptions.html}
|
|
74
|
+
*/
|
|
75
|
+
export type OutboundEdiOptions = {
|
|
76
|
+
X12: X12Envelope;
|
|
77
|
+
};
|
|
63
78
|
/**
|
|
64
79
|
* Type definition for `AWS::B2BI::Partnership.Tag`.
|
|
65
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-tag.html}
|
|
@@ -76,6 +91,118 @@ export type Tag = {
|
|
|
76
91
|
*/
|
|
77
92
|
Value: string;
|
|
78
93
|
};
|
|
94
|
+
/**
|
|
95
|
+
* Type definition for `AWS::B2BI::Partnership.X12Delimiters`.
|
|
96
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12delimiters.html}
|
|
97
|
+
*/
|
|
98
|
+
export type X12Delimiters = {
|
|
99
|
+
/**
|
|
100
|
+
* @minLength `1`
|
|
101
|
+
* @maxLength `1`
|
|
102
|
+
* @pattern `^[!&'()*+,\-./:;?=%@\[\]_{}|<>~^`"]$`
|
|
103
|
+
*/
|
|
104
|
+
ComponentSeparator?: string;
|
|
105
|
+
/**
|
|
106
|
+
* @minLength `1`
|
|
107
|
+
* @maxLength `1`
|
|
108
|
+
* @pattern `^[!&'()*+,\-./:;?=%@\[\]_{}|<>~^`"]$`
|
|
109
|
+
*/
|
|
110
|
+
DataElementSeparator?: string;
|
|
111
|
+
/**
|
|
112
|
+
* @minLength `1`
|
|
113
|
+
* @maxLength `1`
|
|
114
|
+
* @pattern `^[!&'()*+,\-./:;?=%@\[\]_{}|<>~^`"]$`
|
|
115
|
+
*/
|
|
116
|
+
SegmentTerminator?: string;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::B2BI::Partnership.X12Envelope`.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12envelope.html}
|
|
121
|
+
*/
|
|
122
|
+
export type X12Envelope = {
|
|
123
|
+
Common?: X12OutboundEdiHeaders;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Type definition for `AWS::B2BI::Partnership.X12FunctionalGroupHeaders`.
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12functionalgroupheaders.html}
|
|
128
|
+
*/
|
|
129
|
+
export type X12FunctionalGroupHeaders = {
|
|
130
|
+
/**
|
|
131
|
+
* @minLength `2`
|
|
132
|
+
* @maxLength `15`
|
|
133
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
134
|
+
*/
|
|
135
|
+
ApplicationReceiverCode?: string;
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `2`
|
|
138
|
+
* @maxLength `15`
|
|
139
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
140
|
+
*/
|
|
141
|
+
ApplicationSenderCode?: string;
|
|
142
|
+
/**
|
|
143
|
+
* @minLength `1`
|
|
144
|
+
* @maxLength `2`
|
|
145
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
146
|
+
*/
|
|
147
|
+
ResponsibleAgencyCode?: string;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* Type definition for `AWS::B2BI::Partnership.X12InterchangeControlHeaders`.
|
|
151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12interchangecontrolheaders.html}
|
|
152
|
+
*/
|
|
153
|
+
export type X12InterchangeControlHeaders = {
|
|
154
|
+
/**
|
|
155
|
+
* @minLength `1`
|
|
156
|
+
* @maxLength `1`
|
|
157
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
158
|
+
*/
|
|
159
|
+
AcknowledgmentRequestedCode?: string;
|
|
160
|
+
/**
|
|
161
|
+
* @minLength `15`
|
|
162
|
+
* @maxLength `15`
|
|
163
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
164
|
+
*/
|
|
165
|
+
ReceiverId?: string;
|
|
166
|
+
/**
|
|
167
|
+
* @minLength `2`
|
|
168
|
+
* @maxLength `2`
|
|
169
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
170
|
+
*/
|
|
171
|
+
ReceiverIdQualifier?: string;
|
|
172
|
+
/**
|
|
173
|
+
* @minLength `1`
|
|
174
|
+
* @maxLength `1`
|
|
175
|
+
*/
|
|
176
|
+
RepetitionSeparator?: string;
|
|
177
|
+
/**
|
|
178
|
+
* @minLength `15`
|
|
179
|
+
* @maxLength `15`
|
|
180
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
181
|
+
*/
|
|
182
|
+
SenderId?: string;
|
|
183
|
+
/**
|
|
184
|
+
* @minLength `2`
|
|
185
|
+
* @maxLength `2`
|
|
186
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
187
|
+
*/
|
|
188
|
+
SenderIdQualifier?: string;
|
|
189
|
+
/**
|
|
190
|
+
* @minLength `1`
|
|
191
|
+
* @maxLength `1`
|
|
192
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
193
|
+
*/
|
|
194
|
+
UsageIndicatorCode?: string;
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* Type definition for `AWS::B2BI::Partnership.X12OutboundEdiHeaders`.
|
|
198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html}
|
|
199
|
+
*/
|
|
200
|
+
export type X12OutboundEdiHeaders = {
|
|
201
|
+
Delimiters?: X12Delimiters;
|
|
202
|
+
FunctionalGroupHeaders?: X12FunctionalGroupHeaders;
|
|
203
|
+
InterchangeControlHeaders?: X12InterchangeControlHeaders;
|
|
204
|
+
ValidateEdi?: boolean;
|
|
205
|
+
};
|
|
79
206
|
/**
|
|
80
207
|
* Definition of AWS::B2BI::Partnership Resource Type
|
|
81
208
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html}
|
|
@@ -5,23 +5,30 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html}
|
|
6
6
|
*/
|
|
7
7
|
export type B2BITransformerProperties = {
|
|
8
|
-
EdiType
|
|
9
|
-
FileFormat
|
|
8
|
+
EdiType?: EdiType;
|
|
9
|
+
FileFormat?: FileFormat;
|
|
10
|
+
InputConversion?: InputConversion;
|
|
11
|
+
Mapping?: Mapping;
|
|
10
12
|
/**
|
|
13
|
+
* This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
|
|
11
14
|
* @minLength `0`
|
|
12
15
|
* @maxLength `350000`
|
|
13
16
|
*/
|
|
14
|
-
MappingTemplate
|
|
17
|
+
MappingTemplate?: string;
|
|
15
18
|
/**
|
|
16
19
|
* @minLength `1`
|
|
17
20
|
* @maxLength `254`
|
|
21
|
+
* @pattern `^[a-zA-Z0-9_-]{1,512}$`
|
|
18
22
|
*/
|
|
19
23
|
Name: string;
|
|
24
|
+
OutputConversion?: OutputConversion;
|
|
20
25
|
/**
|
|
26
|
+
* This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
|
|
21
27
|
* @minLength `0`
|
|
22
28
|
* @maxLength `1024`
|
|
23
29
|
*/
|
|
24
30
|
SampleDocument?: string;
|
|
31
|
+
SampleDocuments?: SampleDocuments;
|
|
25
32
|
Status: TransformerStatus;
|
|
26
33
|
/**
|
|
27
34
|
* @minLength `0`
|
|
@@ -59,7 +66,80 @@ export type EdiType = {
|
|
|
59
66
|
* Type definition for `AWS::B2BI::Transformer.FileFormat`.
|
|
60
67
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-fileformat.html}
|
|
61
68
|
*/
|
|
62
|
-
export type FileFormat = "XML" | "JSON";
|
|
69
|
+
export type FileFormat = "XML" | "JSON" | "NOT_USED";
|
|
70
|
+
/**
|
|
71
|
+
* Type definition for `AWS::B2BI::Transformer.FormatOptions`.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-formatoptions.html}
|
|
73
|
+
*/
|
|
74
|
+
export type FormatOptions = {
|
|
75
|
+
X12: X12Details;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::B2BI::Transformer.FromFormat`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-fromformat.html}
|
|
80
|
+
*/
|
|
81
|
+
export type FromFormat = "X12";
|
|
82
|
+
/**
|
|
83
|
+
* Type definition for `AWS::B2BI::Transformer.InputConversion`.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-inputconversion.html}
|
|
85
|
+
*/
|
|
86
|
+
export type InputConversion = {
|
|
87
|
+
FormatOptions?: FormatOptions;
|
|
88
|
+
FromFormat: FromFormat;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::B2BI::Transformer.Mapping`.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-mapping.html}
|
|
93
|
+
*/
|
|
94
|
+
export type Mapping = {
|
|
95
|
+
/**
|
|
96
|
+
* @minLength `0`
|
|
97
|
+
* @maxLength `350000`
|
|
98
|
+
*/
|
|
99
|
+
Template?: string;
|
|
100
|
+
TemplateLanguage: MappingTemplateLanguage;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::B2BI::Transformer.MappingTemplateLanguage`.
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-mappingtemplatelanguage.html}
|
|
105
|
+
*/
|
|
106
|
+
export type MappingTemplateLanguage = "XSLT" | "JSONATA";
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::B2BI::Transformer.OutputConversion`.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-outputconversion.html}
|
|
110
|
+
*/
|
|
111
|
+
export type OutputConversion = {
|
|
112
|
+
FormatOptions?: FormatOptions;
|
|
113
|
+
ToFormat: ToFormat;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::B2BI::Transformer.SampleDocumentKeys`.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocumentkeys.html}
|
|
118
|
+
*/
|
|
119
|
+
export type SampleDocumentKeys = {
|
|
120
|
+
/**
|
|
121
|
+
* @minLength `0`
|
|
122
|
+
* @maxLength `1024`
|
|
123
|
+
*/
|
|
124
|
+
Input?: string;
|
|
125
|
+
/**
|
|
126
|
+
* @minLength `0`
|
|
127
|
+
* @maxLength `1024`
|
|
128
|
+
*/
|
|
129
|
+
Output?: string;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::B2BI::Transformer.SampleDocuments`.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocuments.html}
|
|
134
|
+
*/
|
|
135
|
+
export type SampleDocuments = {
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `3`
|
|
138
|
+
* @maxLength `63`
|
|
139
|
+
*/
|
|
140
|
+
BucketName: string;
|
|
141
|
+
Keys: SampleDocumentKeys[];
|
|
142
|
+
};
|
|
63
143
|
/**
|
|
64
144
|
* Type definition for `AWS::B2BI::Transformer.Tag`.
|
|
65
145
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-tag.html}
|
|
@@ -76,6 +156,11 @@ export type Tag = {
|
|
|
76
156
|
*/
|
|
77
157
|
Value: string;
|
|
78
158
|
};
|
|
159
|
+
/**
|
|
160
|
+
* Type definition for `AWS::B2BI::Transformer.ToFormat`.
|
|
161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-toformat.html}
|
|
162
|
+
*/
|
|
163
|
+
export type ToFormat = "X12";
|
|
79
164
|
/**
|
|
80
165
|
* Type definition for `AWS::B2BI::Transformer.TransformerStatus`.
|
|
81
166
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-transformerstatus.html}
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-customresource.html}
|
|
6
6
|
*/
|
|
7
7
|
export type CloudFormationCustomResourceProperties = {
|
|
8
|
+
ServiceTimeout?: number;
|
|
8
9
|
ServiceToken: string;
|
|
9
10
|
};
|
|
10
11
|
/**
|
package/lib/AWS-EMR-Cluster.d.ts
CHANGED
|
@@ -143,6 +143,7 @@ export type InstanceFleetConfig = {
|
|
|
143
143
|
InstanceTypeConfigs?: InstanceTypeConfig[];
|
|
144
144
|
LaunchSpecifications?: InstanceFleetProvisioningSpecifications;
|
|
145
145
|
Name?: string;
|
|
146
|
+
ResizeSpecifications?: InstanceFleetResizingSpecifications;
|
|
146
147
|
TargetOnDemandCapacity?: number;
|
|
147
148
|
TargetSpotCapacity?: number;
|
|
148
149
|
};
|
|
@@ -154,6 +155,14 @@ export type InstanceFleetProvisioningSpecifications = {
|
|
|
154
155
|
OnDemandSpecification?: OnDemandProvisioningSpecification;
|
|
155
156
|
SpotSpecification?: SpotProvisioningSpecification;
|
|
156
157
|
};
|
|
158
|
+
/**
|
|
159
|
+
* Type definition for `AWS::EMR::Cluster.InstanceFleetResizingSpecifications`.
|
|
160
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-instancefleetresizingspecifications.html}
|
|
161
|
+
*/
|
|
162
|
+
export type InstanceFleetResizingSpecifications = {
|
|
163
|
+
OnDemandResizeSpecification?: OnDemandResizingSpecification;
|
|
164
|
+
SpotResizeSpecification?: SpotResizingSpecification;
|
|
165
|
+
};
|
|
157
166
|
/**
|
|
158
167
|
* Type definition for `AWS::EMR::Cluster.InstanceGroupConfig`.
|
|
159
168
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-instancegroupconfig.html}
|
|
@@ -180,6 +189,7 @@ export type InstanceTypeConfig = {
|
|
|
180
189
|
CustomAmiId?: string;
|
|
181
190
|
EbsConfiguration?: EbsConfiguration;
|
|
182
191
|
InstanceType: string;
|
|
192
|
+
Priority?: number;
|
|
183
193
|
WeightedCapacity?: number;
|
|
184
194
|
};
|
|
185
195
|
/**
|
|
@@ -241,12 +251,31 @@ export type MetricDimension = {
|
|
|
241
251
|
Key: string;
|
|
242
252
|
Value: string;
|
|
243
253
|
};
|
|
254
|
+
/**
|
|
255
|
+
* Type definition for `AWS::EMR::Cluster.OnDemandCapacityReservationOptions`.
|
|
256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandcapacityreservationoptions.html}
|
|
257
|
+
*/
|
|
258
|
+
export type OnDemandCapacityReservationOptions = {
|
|
259
|
+
CapacityReservationPreference?: string;
|
|
260
|
+
CapacityReservationResourceGroupArn?: string;
|
|
261
|
+
UsageStrategy?: string;
|
|
262
|
+
};
|
|
244
263
|
/**
|
|
245
264
|
* Type definition for `AWS::EMR::Cluster.OnDemandProvisioningSpecification`.
|
|
246
265
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandprovisioningspecification.html}
|
|
247
266
|
*/
|
|
248
267
|
export type OnDemandProvisioningSpecification = {
|
|
249
268
|
AllocationStrategy: string;
|
|
269
|
+
CapacityReservationOptions?: OnDemandCapacityReservationOptions;
|
|
270
|
+
};
|
|
271
|
+
/**
|
|
272
|
+
* Type definition for `AWS::EMR::Cluster.OnDemandResizingSpecification`.
|
|
273
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandresizingspecification.html}
|
|
274
|
+
*/
|
|
275
|
+
export type OnDemandResizingSpecification = {
|
|
276
|
+
AllocationStrategy?: string;
|
|
277
|
+
CapacityReservationOptions?: OnDemandCapacityReservationOptions;
|
|
278
|
+
TimeoutDurationMinutes?: number;
|
|
250
279
|
};
|
|
251
280
|
/**
|
|
252
281
|
* Type definition for `AWS::EMR::Cluster.PlacementGroupConfig`.
|
|
@@ -323,6 +352,14 @@ export type SpotProvisioningSpecification = {
|
|
|
323
352
|
TimeoutAction: string;
|
|
324
353
|
TimeoutDurationMinutes: number;
|
|
325
354
|
};
|
|
355
|
+
/**
|
|
356
|
+
* Type definition for `AWS::EMR::Cluster.SpotResizingSpecification`.
|
|
357
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-spotresizingspecification.html}
|
|
358
|
+
*/
|
|
359
|
+
export type SpotResizingSpecification = {
|
|
360
|
+
AllocationStrategy?: string;
|
|
361
|
+
TimeoutDurationMinutes?: number;
|
|
362
|
+
};
|
|
326
363
|
/**
|
|
327
364
|
* Type definition for `AWS::EMR::Cluster.StepConfig`.
|
|
328
365
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-stepconfig.html}
|
|
@@ -10,6 +10,7 @@ export type EMRInstanceFleetConfigProperties = {
|
|
|
10
10
|
InstanceTypeConfigs?: InstanceTypeConfig[];
|
|
11
11
|
LaunchSpecifications?: InstanceFleetProvisioningSpecifications;
|
|
12
12
|
Name?: string;
|
|
13
|
+
ResizeSpecifications?: InstanceFleetResizingSpecifications;
|
|
13
14
|
TargetOnDemandCapacity?: number;
|
|
14
15
|
TargetSpotCapacity?: number;
|
|
15
16
|
};
|
|
@@ -53,6 +54,14 @@ export type InstanceFleetProvisioningSpecifications = {
|
|
|
53
54
|
OnDemandSpecification?: OnDemandProvisioningSpecification;
|
|
54
55
|
SpotSpecification?: SpotProvisioningSpecification;
|
|
55
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::EMR::InstanceFleetConfig.InstanceFleetResizingSpecifications`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-instancefleetresizingspecifications.html}
|
|
60
|
+
*/
|
|
61
|
+
export type InstanceFleetResizingSpecifications = {
|
|
62
|
+
OnDemandResizeSpecification?: OnDemandResizingSpecification;
|
|
63
|
+
SpotResizeSpecification?: SpotResizingSpecification;
|
|
64
|
+
};
|
|
56
65
|
/**
|
|
57
66
|
* Type definition for `AWS::EMR::InstanceFleetConfig.InstanceTypeConfig`.
|
|
58
67
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-instancetypeconfig.html}
|
|
@@ -64,14 +73,34 @@ export type InstanceTypeConfig = {
|
|
|
64
73
|
CustomAmiId?: string;
|
|
65
74
|
EbsConfiguration?: EbsConfiguration;
|
|
66
75
|
InstanceType: string;
|
|
76
|
+
Priority?: number;
|
|
67
77
|
WeightedCapacity?: number;
|
|
68
78
|
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::EMR::InstanceFleetConfig.OnDemandCapacityReservationOptions`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandcapacityreservationoptions.html}
|
|
82
|
+
*/
|
|
83
|
+
export type OnDemandCapacityReservationOptions = {
|
|
84
|
+
CapacityReservationPreference?: string;
|
|
85
|
+
CapacityReservationResourceGroupArn?: string;
|
|
86
|
+
UsageStrategy?: string;
|
|
87
|
+
};
|
|
69
88
|
/**
|
|
70
89
|
* Type definition for `AWS::EMR::InstanceFleetConfig.OnDemandProvisioningSpecification`.
|
|
71
90
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandprovisioningspecification.html}
|
|
72
91
|
*/
|
|
73
92
|
export type OnDemandProvisioningSpecification = {
|
|
74
93
|
AllocationStrategy: string;
|
|
94
|
+
CapacityReservationOptions?: OnDemandCapacityReservationOptions;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Type definition for `AWS::EMR::InstanceFleetConfig.OnDemandResizingSpecification`.
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandresizingspecification.html}
|
|
99
|
+
*/
|
|
100
|
+
export type OnDemandResizingSpecification = {
|
|
101
|
+
AllocationStrategy?: string;
|
|
102
|
+
CapacityReservationOptions?: OnDemandCapacityReservationOptions;
|
|
103
|
+
TimeoutDurationMinutes?: number;
|
|
75
104
|
};
|
|
76
105
|
/**
|
|
77
106
|
* Type definition for `AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification`.
|
|
@@ -83,6 +112,14 @@ export type SpotProvisioningSpecification = {
|
|
|
83
112
|
TimeoutAction: string;
|
|
84
113
|
TimeoutDurationMinutes: number;
|
|
85
114
|
};
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::EMR::InstanceFleetConfig.SpotResizingSpecification`.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-spotresizingspecification.html}
|
|
118
|
+
*/
|
|
119
|
+
export type SpotResizingSpecification = {
|
|
120
|
+
AllocationStrategy?: string;
|
|
121
|
+
TimeoutDurationMinutes?: number;
|
|
122
|
+
};
|
|
86
123
|
/**
|
|
87
124
|
* Type definition for `AWS::EMR::InstanceFleetConfig.VolumeSpecification`.
|
|
88
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-volumespecification.html}
|
|
@@ -6,7 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html}
|
|
7
7
|
*/
|
|
8
8
|
export type IoTDomainConfigurationProperties = {
|
|
9
|
+
ApplicationProtocol?: "SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT";
|
|
10
|
+
AuthenticationType?: "AWS_X509" | "CUSTOM_AUTH" | "AWS_SIGV4" | "CUSTOM_AUTH_X509" | "DEFAULT";
|
|
9
11
|
AuthorizerConfig?: AuthorizerConfig;
|
|
12
|
+
ClientCertificateConfig?: ClientCertificateConfig;
|
|
10
13
|
/**
|
|
11
14
|
* @minLength `1`
|
|
12
15
|
* @maxLength `128`
|
|
@@ -64,6 +67,17 @@ export type AuthorizerConfig = {
|
|
|
64
67
|
*/
|
|
65
68
|
DefaultAuthorizerName?: string;
|
|
66
69
|
};
|
|
70
|
+
/**
|
|
71
|
+
* Type definition for `AWS::IoT::DomainConfiguration.ClientCertificateConfig`.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-clientcertificateconfig.html}
|
|
73
|
+
*/
|
|
74
|
+
export type ClientCertificateConfig = {
|
|
75
|
+
/**
|
|
76
|
+
* @minLength `1`
|
|
77
|
+
* @maxLength `170`
|
|
78
|
+
*/
|
|
79
|
+
ClientCertificateCallbackArn?: string;
|
|
80
|
+
};
|
|
67
81
|
/**
|
|
68
82
|
* Type definition for `AWS::IoT::DomainConfiguration.ServerCertificateConfig`.
|
|
69
83
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html}
|
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -433,6 +433,7 @@ export type LifecycleConfiguration = {
|
|
|
433
433
|
* A lifecycle rule for individual objects in an Amazon S3 bucket.
|
|
434
434
|
*/
|
|
435
435
|
Rules: Rule[];
|
|
436
|
+
TransitionDefaultMinimumObjectSize?: "varies_by_storage_class" | "all_storage_classes_128K";
|
|
436
437
|
};
|
|
437
438
|
/**
|
|
438
439
|
* Type definition for `AWS::S3::Bucket.LoggingConfiguration`.
|