@awboost/cfn-resource-types 0.1.481 → 0.1.482
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-BillingConductor-CustomLineItem.d.ts +1 -1
- package/lib/AWS-CloudFront-ConnectionFunction.d.ts +69 -0
- package/lib/AWS-CloudFront-ConnectionFunction.js +12 -0
- package/lib/AWS-CloudTrail-Trail.d.ts +28 -0
- package/lib/AWS-CustomerProfiles-Domain.d.ts +52 -0
- package/lib/AWS-EC2-NatGateway.d.ts +14 -0
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +2 -2
- package/lib/AWS-KMS-Key.d.ts +3 -0
- package/lib/AWS-Lambda-EventSourceMapping.d.ts +10 -6
- package/lib/AWS-MSK-Cluster.d.ts +12 -4
- package/lib/AWS-RUM-AppMonitor.d.ts +47 -0
- package/lib/AWS-S3-Bucket.d.ts +11 -0
- package/lib/AWS-SageMaker-PartnerApp.d.ts +14 -0
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ export type BillingConductorCustomLineItemProperties = {
|
|
|
13
13
|
AccountId?: string;
|
|
14
14
|
/**
|
|
15
15
|
* Billing Group ARN
|
|
16
|
-
* @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[
|
|
16
|
+
* @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[a-zA-Z0-9]{10,12}`
|
|
17
17
|
*/
|
|
18
18
|
BillingGroupArn: string;
|
|
19
19
|
BillingPeriodRange?: BillingPeriodRange;
|
|
@@ -0,0 +1,69 @@
|
|
|
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::CloudFront::ConnectionFunction
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CloudFrontConnectionFunctionProperties = {
|
|
8
|
+
AutoPublish?: boolean;
|
|
9
|
+
ConnectionFunctionCode: string;
|
|
10
|
+
ConnectionFunctionConfig: ConnectionFunctionConfig;
|
|
11
|
+
Name: string;
|
|
12
|
+
Tags?: Tag[];
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Attribute type definition for `AWS::CloudFront::ConnectionFunction`.
|
|
16
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html#aws-resource-cloudfront-connectionfunction-return-values}
|
|
17
|
+
*/
|
|
18
|
+
export type CloudFrontConnectionFunctionAttributes = {
|
|
19
|
+
ConnectionFunctionArn: string;
|
|
20
|
+
CreatedTime: string;
|
|
21
|
+
ETag: string;
|
|
22
|
+
Id: string;
|
|
23
|
+
LastModifiedTime: string;
|
|
24
|
+
Stage: "DEVELOPMENT" | "LIVE";
|
|
25
|
+
Status: "UNPUBLISHED" | "DEPLOYED" | "UNASSOCIATED" | "PUBLISHING" | "IN_PROGRESS";
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Type definition for `AWS::CloudFront::ConnectionFunction.ConnectionFunctionConfig`.
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-connectionfunctionconfig.html}
|
|
30
|
+
*/
|
|
31
|
+
export type ConnectionFunctionConfig = {
|
|
32
|
+
Comment: string;
|
|
33
|
+
KeyValueStoreAssociations?: KeyValueStoreAssociation[];
|
|
34
|
+
Runtime: "cloudfront-js-2.0";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::CloudFront::ConnectionFunction.KeyValueStoreAssociation`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-keyvaluestoreassociation.html}
|
|
39
|
+
*/
|
|
40
|
+
export type KeyValueStoreAssociation = {
|
|
41
|
+
KeyValueStoreARN: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::CloudFront::ConnectionFunction.Tag`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-tag.html}
|
|
46
|
+
*/
|
|
47
|
+
export type Tag = {
|
|
48
|
+
/**
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `128`
|
|
51
|
+
* @pattern `^[a-zA-Z0-9 _.:/=+\-@]{1,128}\Z`
|
|
52
|
+
*/
|
|
53
|
+
Key: string;
|
|
54
|
+
/**
|
|
55
|
+
* @minLength `0`
|
|
56
|
+
* @maxLength `256`
|
|
57
|
+
* @pattern `^[a-zA-Z0-9 _.:/=+\-@]{0,256}\Z`
|
|
58
|
+
*/
|
|
59
|
+
Value: string;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* Resource Type definition for AWS::CloudFront::ConnectionFunction
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html}
|
|
64
|
+
*/
|
|
65
|
+
export declare class CloudFrontConnectionFunction extends $Resource<"AWS::CloudFront::ConnectionFunction", CloudFrontConnectionFunctionProperties, CloudFrontConnectionFunctionAttributes> {
|
|
66
|
+
static readonly Type = "AWS::CloudFront::ConnectionFunction";
|
|
67
|
+
constructor(logicalId: string, properties: CloudFrontConnectionFunctionProperties, options?: $ResourceOptions);
|
|
68
|
+
}
|
|
69
|
+
//# sourceMappingURL=AWS-CloudFront-ConnectionFunction.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::CloudFront::ConnectionFunction
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CloudFrontConnectionFunction extends $Resource {
|
|
7
|
+
static Type = "AWS::CloudFront::ConnectionFunction";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CloudFrontConnectionFunction.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-CloudFront-ConnectionFunction.js.map
|
|
@@ -10,6 +10,11 @@ export type CloudTrailTrailProperties = {
|
|
|
10
10
|
* The advanced event selectors that were used to select events for the data store.
|
|
11
11
|
*/
|
|
12
12
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
13
|
+
/**
|
|
14
|
+
* Specifies the aggregation configuration to aggregate CloudTrail Events. A maximum of 1 aggregation configuration is allowed.
|
|
15
|
+
* @maxLength `1`
|
|
16
|
+
*/
|
|
17
|
+
AggregationConfigurations?: AggregationConfiguration[];
|
|
13
18
|
/**
|
|
14
19
|
* Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn.
|
|
15
20
|
*/
|
|
@@ -143,6 +148,23 @@ export type AdvancedFieldSelector = {
|
|
|
143
148
|
*/
|
|
144
149
|
StartsWith?: string[];
|
|
145
150
|
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::CloudTrail::Trail.AggregationConfiguration`.
|
|
153
|
+
* Configure to add aggregation rules to aggregate CloudTrail Events.
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-aggregationconfiguration.html}
|
|
155
|
+
*/
|
|
156
|
+
export type AggregationConfiguration = {
|
|
157
|
+
/**
|
|
158
|
+
* The category of events to be aggregated.
|
|
159
|
+
*/
|
|
160
|
+
EventCategory: "Data";
|
|
161
|
+
/**
|
|
162
|
+
* Contains all templates in an aggregation configuration.
|
|
163
|
+
* @minLength `1`
|
|
164
|
+
* @maxLength `50`
|
|
165
|
+
*/
|
|
166
|
+
Templates: Template[];
|
|
167
|
+
};
|
|
146
168
|
/**
|
|
147
169
|
* Type definition for `AWS::CloudTrail::Trail.DataResource`.
|
|
148
170
|
* CloudTrail supports data event logging for Amazon S3 objects and AWS Lambda functions. You can specify up to 250 resources for an individual event selector, but the total number of data resources cannot exceed 250 across all event selectors in a trail. This limit does not apply if you configure resource logging for all data events.
|
|
@@ -214,6 +236,12 @@ export type Tag = {
|
|
|
214
236
|
*/
|
|
215
237
|
Value: string;
|
|
216
238
|
};
|
|
239
|
+
/**
|
|
240
|
+
* Type definition for `AWS::CloudTrail::Trail.Template`.
|
|
241
|
+
* A template used to configure aggregation rules.
|
|
242
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-template.html}
|
|
243
|
+
*/
|
|
244
|
+
export type Template = "API_ACTIVITY" | "RESOURCE_ACCESS" | "USER_ACTIONS";
|
|
217
245
|
/**
|
|
218
246
|
* Resource type definition for `AWS::CloudTrail::Trail`.
|
|
219
247
|
* Creates a trail that specifies the settings for delivery of log data to an Amazon S3 bucket. A maximum of five trails can exist in a region, irrespective of the region in which they were created.
|
|
@@ -6,6 +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-customerprofiles-domain.html}
|
|
7
7
|
*/
|
|
8
8
|
export type CustomerProfilesDomainProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Configuration and status of the data store for the domain.
|
|
11
|
+
*/
|
|
12
|
+
DataStore?: DataStore;
|
|
9
13
|
/**
|
|
10
14
|
* The URL of the SQS dead letter queue
|
|
11
15
|
* @minLength `0`
|
|
@@ -55,6 +59,26 @@ export type CustomerProfilesDomainAttributes = {
|
|
|
55
59
|
* The time of this integration got created
|
|
56
60
|
*/
|
|
57
61
|
CreatedAt: string;
|
|
62
|
+
/**
|
|
63
|
+
* Configuration and status of the data store for the domain.
|
|
64
|
+
*/
|
|
65
|
+
DataStore: {
|
|
66
|
+
/**
|
|
67
|
+
* Progress information for data store setup.
|
|
68
|
+
*/
|
|
69
|
+
Readiness: {
|
|
70
|
+
/**
|
|
71
|
+
* A message describing the current progress.
|
|
72
|
+
*/
|
|
73
|
+
Message: string;
|
|
74
|
+
/**
|
|
75
|
+
* The percentage of progress completed.
|
|
76
|
+
* @min `0`
|
|
77
|
+
* @max `100`
|
|
78
|
+
*/
|
|
79
|
+
ProgressPercentage: number;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
58
82
|
/**
|
|
59
83
|
* The time of this integration got last updated at
|
|
60
84
|
*/
|
|
@@ -171,6 +195,17 @@ export type Consolidation = {
|
|
|
171
195
|
*/
|
|
172
196
|
MatchingAttributesList: string[][];
|
|
173
197
|
};
|
|
198
|
+
/**
|
|
199
|
+
* Type definition for `AWS::CustomerProfiles::Domain.DataStore`.
|
|
200
|
+
* Configuration and status of the data store for the domain.
|
|
201
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html}
|
|
202
|
+
*/
|
|
203
|
+
export type DataStore = {
|
|
204
|
+
/**
|
|
205
|
+
* Whether the data store is enabled.
|
|
206
|
+
*/
|
|
207
|
+
Enabled?: boolean;
|
|
208
|
+
};
|
|
174
209
|
/**
|
|
175
210
|
* Type definition for `AWS::CustomerProfiles::Domain.DomainStats`.
|
|
176
211
|
* Usage-specific statistics about the domain.
|
|
@@ -259,6 +294,23 @@ export type MatchingRule = {
|
|
|
259
294
|
*/
|
|
260
295
|
Rule: string[];
|
|
261
296
|
};
|
|
297
|
+
/**
|
|
298
|
+
* Type definition for `AWS::CustomerProfiles::Domain.Readiness`.
|
|
299
|
+
* Progress information for data store setup.
|
|
300
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-readiness.html}
|
|
301
|
+
*/
|
|
302
|
+
export type Readiness = {
|
|
303
|
+
/**
|
|
304
|
+
* A message describing the current progress.
|
|
305
|
+
*/
|
|
306
|
+
Message?: string;
|
|
307
|
+
/**
|
|
308
|
+
* The percentage of progress completed.
|
|
309
|
+
* @min `0`
|
|
310
|
+
* @max `100`
|
|
311
|
+
*/
|
|
312
|
+
ProgressPercentage?: number;
|
|
313
|
+
};
|
|
262
314
|
/**
|
|
263
315
|
* Type definition for `AWS::CustomerProfiles::Domain.RuleBasedMatching`.
|
|
264
316
|
* The process of matching duplicate profiles using the Rule-Based matching. If RuleBasedMatching = true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in the RuleBasedMatchingRequest. You can use the ListRuleBasedMatches and GetSimilarProfiles API to return and review the results. Also, if you have configured ExportingConfig in the RuleBasedMatchingRequest, you can download the results from S3.
|
|
@@ -13,6 +13,8 @@ export type EC2NatGatewayProperties = {
|
|
|
13
13
|
* [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway.
|
|
14
14
|
*/
|
|
15
15
|
AllocationId?: string;
|
|
16
|
+
AvailabilityMode?: string;
|
|
17
|
+
AvailabilityZoneAddresses?: AvailabilityZoneAddress[];
|
|
16
18
|
/**
|
|
17
19
|
* Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
|
|
18
20
|
*/
|
|
@@ -58,8 +60,20 @@ export type EC2NatGatewayProperties = {
|
|
|
58
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#aws-resource-ec2-natgateway-return-values}
|
|
59
61
|
*/
|
|
60
62
|
export type EC2NatGatewayAttributes = {
|
|
63
|
+
AutoProvisionZones: string;
|
|
64
|
+
AutoScalingIps: string;
|
|
61
65
|
EniId: string;
|
|
62
66
|
NatGatewayId: string;
|
|
67
|
+
RouteTableId: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::EC2::NatGateway.AvailabilityZoneAddress`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-availabilityzoneaddress.html}
|
|
72
|
+
*/
|
|
73
|
+
export type AvailabilityZoneAddress = {
|
|
74
|
+
AllocationIds: string[];
|
|
75
|
+
AvailabilityZone?: string;
|
|
76
|
+
AvailabilityZoneId?: string;
|
|
63
77
|
};
|
|
64
78
|
/**
|
|
65
79
|
* Type definition for `AWS::EC2::NatGateway.Tag`.
|
|
@@ -184,7 +184,7 @@ export type RuleBasedProperties = {
|
|
|
184
184
|
MatchPurpose?: "IDENTIFIER_GENERATION" | "INDEXING";
|
|
185
185
|
/**
|
|
186
186
|
* @minLength `1`
|
|
187
|
-
* @maxLength `
|
|
187
|
+
* @maxLength `25`
|
|
188
188
|
*/
|
|
189
189
|
Rules: Rule[];
|
|
190
190
|
};
|
|
@@ -208,7 +208,7 @@ export type RuleCondition = {
|
|
|
208
208
|
export type RuleConditionProperties = {
|
|
209
209
|
/**
|
|
210
210
|
* @minLength `1`
|
|
211
|
-
* @maxLength `
|
|
211
|
+
* @maxLength `25`
|
|
212
212
|
*/
|
|
213
213
|
Rules: RuleCondition[];
|
|
214
214
|
};
|
package/lib/AWS-KMS-Key.d.ts
CHANGED
|
@@ -81,6 +81,9 @@ export type KMSKeyProperties = {
|
|
|
81
81
|
+ ``ECC_NIST_P256`` (secp256r1)
|
|
82
82
|
+ ``ECC_NIST_P384`` (secp384r1)
|
|
83
83
|
+ ``ECC_NIST_P521`` (secp521r1)
|
|
84
|
+
+ ``ECC_NIST_EDWARDS25519`` (ed25519) - signing and verification only
|
|
85
|
+
+ *Note:* For ECC_NIST_EDWARDS25519 KMS keys, the ED25519_SHA_512 signing algorithm requires [MessageType:RAW](https://docs.aws.amazon.com/kms/latest/APIReference/API_Sign.html#KMS-Sign-request-MessageType), while ED25519_PH_SHA_512 requires [MessageType:DIGEST](https://docs.aws.amazon.com/kms/latest/APIReference/API_Sign.html#KMS-Sign-request-MessageType). These message types cannot be used interchangeably.
|
|
86
|
+
|
|
84
87
|
|
|
85
88
|
+ Other asymmetric elliptic curve key pairs (signing and verification)
|
|
86
89
|
+ ``ECC_SECG_P256K1`` (secp256k1), commonly used for cryptocurrencies.
|
|
@@ -91,6 +91,9 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
91
91
|
* @pattern `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
|
|
92
92
|
*/
|
|
93
93
|
KmsKeyArn?: string;
|
|
94
|
+
/**
|
|
95
|
+
* The function's Amazon CloudWatch Logs configuration settings.
|
|
96
|
+
*/
|
|
94
97
|
LoggingConfig?: LoggingConfig;
|
|
95
98
|
/**
|
|
96
99
|
* The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
@@ -125,7 +128,7 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
125
128
|
*/
|
|
126
129
|
ParallelizationFactor?: number;
|
|
127
130
|
/**
|
|
128
|
-
* (Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode).
|
|
131
|
+
* (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode).
|
|
129
132
|
*/
|
|
130
133
|
ProvisionedPollerConfig?: ProvisionedPollerConfig;
|
|
131
134
|
/**
|
|
@@ -135,7 +138,7 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
135
138
|
*/
|
|
136
139
|
Queues?: string[];
|
|
137
140
|
/**
|
|
138
|
-
*
|
|
141
|
+
* This property is for Amazon SQS event sources only. You cannot use ``ProvisionedPollerConfig`` while using ``ScalingConfig``. These options are mutually exclusive. To remove the scaling configuration, pass an empty value.
|
|
139
142
|
*/
|
|
140
143
|
ScalingConfig?: ScalingConfig;
|
|
141
144
|
/**
|
|
@@ -296,11 +299,12 @@ export type FilterCriteria = {
|
|
|
296
299
|
};
|
|
297
300
|
/**
|
|
298
301
|
* Type definition for `AWS::Lambda::EventSourceMapping.LoggingConfig`.
|
|
302
|
+
* The function's Amazon CloudWatch Logs configuration settings.
|
|
299
303
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-loggingconfig.html}
|
|
300
304
|
*/
|
|
301
305
|
export type LoggingConfig = {
|
|
302
306
|
/**
|
|
303
|
-
*
|
|
307
|
+
* Set this property to filter the system logs for your function that Lambda sends to CloudWatch. Lambda only sends system logs at the selected level of detail and lower, where ``DEBUG`` is the highest level and ``WARN`` is the lowest.
|
|
304
308
|
*/
|
|
305
309
|
SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
|
|
306
310
|
};
|
|
@@ -336,18 +340,18 @@ export type OnFailure = {
|
|
|
336
340
|
};
|
|
337
341
|
/**
|
|
338
342
|
* Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
|
|
339
|
-
* The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use
|
|
343
|
+
* The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers for your event source.
|
|
340
344
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
|
|
341
345
|
*/
|
|
342
346
|
export type ProvisionedPollerConfig = {
|
|
343
347
|
/**
|
|
344
|
-
* The maximum number of event pollers this event source can scale up to.
|
|
348
|
+
* The maximum number of event pollers this event source can scale up to. For Amazon SQS events source mappings, default is 200, and minimum value allowed is 2. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 200, and minimum value allowed is 1.
|
|
345
349
|
* @min `1`
|
|
346
350
|
* @max `2000`
|
|
347
351
|
*/
|
|
348
352
|
MaximumPollers?: number;
|
|
349
353
|
/**
|
|
350
|
-
* The minimum number of event pollers this event source can scale down to.
|
|
354
|
+
* The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1.
|
|
351
355
|
* @min `1`
|
|
352
356
|
* @max `200`
|
|
353
357
|
*/
|
package/lib/AWS-MSK-Cluster.d.ts
CHANGED
|
@@ -13,10 +13,6 @@ export type MSKClusterProperties = {
|
|
|
13
13
|
*/
|
|
14
14
|
ClusterName: string;
|
|
15
15
|
ConfigurationInfo?: ConfigurationInfo;
|
|
16
|
-
/**
|
|
17
|
-
* The current version of the MSK cluster
|
|
18
|
-
*/
|
|
19
|
-
CurrentVersion?: string;
|
|
20
16
|
EncryptionInfo?: EncryptionInfo;
|
|
21
17
|
/**
|
|
22
18
|
* @minLength `7`
|
|
@@ -31,6 +27,7 @@ export type MSKClusterProperties = {
|
|
|
31
27
|
LoggingInfo?: LoggingInfo;
|
|
32
28
|
NumberOfBrokerNodes: number;
|
|
33
29
|
OpenMonitoring?: OpenMonitoring;
|
|
30
|
+
Rebalancing?: Rebalancing;
|
|
34
31
|
/**
|
|
35
32
|
* @minLength `5`
|
|
36
33
|
* @maxLength `6`
|
|
@@ -47,6 +44,10 @@ export type MSKClusterProperties = {
|
|
|
47
44
|
*/
|
|
48
45
|
export type MSKClusterAttributes = {
|
|
49
46
|
Arn: string;
|
|
47
|
+
/**
|
|
48
|
+
* The current version of the MSK cluster
|
|
49
|
+
*/
|
|
50
|
+
CurrentVersion: string;
|
|
50
51
|
};
|
|
51
52
|
/**
|
|
52
53
|
* Type definition for `AWS::MSK::Cluster.BrokerLogs`.
|
|
@@ -215,6 +216,13 @@ export type PublicAccess = {
|
|
|
215
216
|
*/
|
|
216
217
|
Type?: string;
|
|
217
218
|
};
|
|
219
|
+
/**
|
|
220
|
+
* Type definition for `AWS::MSK::Cluster.Rebalancing`.
|
|
221
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-rebalancing.html}
|
|
222
|
+
*/
|
|
223
|
+
export type Rebalancing = {
|
|
224
|
+
Status: "PAUSED" | "ACTIVE";
|
|
225
|
+
};
|
|
218
226
|
/**
|
|
219
227
|
* Type definition for `AWS::MSK::Cluster.S3`.
|
|
220
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html}
|
|
@@ -41,6 +41,7 @@ export type RUMAppMonitorProperties = {
|
|
|
41
41
|
* @pattern `[\.\-_/#A-Za-z0-9]+`
|
|
42
42
|
*/
|
|
43
43
|
Name: string;
|
|
44
|
+
Platform?: "Web" | "Android" | "iOS";
|
|
44
45
|
/**
|
|
45
46
|
* A structure that defines resource policy attached to your app monitor.
|
|
46
47
|
*/
|
|
@@ -224,11 +225,57 @@ export type MetricDefinition = {
|
|
|
224
225
|
|
|
225
226
|
WebVitalsLargestContentfulPaint
|
|
226
227
|
|
|
228
|
+
WebVitalsInteractionToNextPaint
|
|
229
|
+
|
|
227
230
|
JsErrorCount
|
|
228
231
|
|
|
229
232
|
HttpErrorCount
|
|
230
233
|
|
|
231
234
|
SessionCount
|
|
235
|
+
|
|
236
|
+
PageViewCount
|
|
237
|
+
|
|
238
|
+
Http4xxCount
|
|
239
|
+
|
|
240
|
+
Http5xxCount
|
|
241
|
+
|
|
242
|
+
SessionDuration
|
|
243
|
+
|
|
244
|
+
PageViewCountPerSession
|
|
245
|
+
|
|
246
|
+
JsErrorCountPerSession
|
|
247
|
+
|
|
248
|
+
Http4xxCountPerSession
|
|
249
|
+
|
|
250
|
+
Http5xxCountPerSession
|
|
251
|
+
|
|
252
|
+
JsErrorCountPerPageView
|
|
253
|
+
|
|
254
|
+
Http4xxCountPerPageView
|
|
255
|
+
|
|
256
|
+
Http5xxCountPerPageView
|
|
257
|
+
|
|
258
|
+
TimeOnPage
|
|
259
|
+
|
|
260
|
+
ColdLaunchTime
|
|
261
|
+
|
|
262
|
+
WarmLaunchTime
|
|
263
|
+
|
|
264
|
+
CrashCount
|
|
265
|
+
|
|
266
|
+
ANRCount
|
|
267
|
+
|
|
268
|
+
AppHangCount
|
|
269
|
+
|
|
270
|
+
ScreenLoadCount
|
|
271
|
+
|
|
272
|
+
ScreenLoadTime
|
|
273
|
+
|
|
274
|
+
NetworkLatency
|
|
275
|
+
|
|
276
|
+
SpanPayloadSize
|
|
277
|
+
|
|
278
|
+
LogEventPayloadSize
|
|
232
279
|
* @minLength `1`
|
|
233
280
|
* @maxLength `255`
|
|
234
281
|
*/
|
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -246,6 +246,16 @@ export type AnalyticsConfiguration = {
|
|
|
246
246
|
*/
|
|
247
247
|
TagFilters?: TagFilter[];
|
|
248
248
|
};
|
|
249
|
+
/**
|
|
250
|
+
* Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
|
|
251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
|
|
252
|
+
*/
|
|
253
|
+
export type BlockedEncryptionTypes = {
|
|
254
|
+
/**
|
|
255
|
+
* List of encryption types.
|
|
256
|
+
*/
|
|
257
|
+
EncryptionType?: ("NONE" | "SSE-C")[];
|
|
258
|
+
};
|
|
249
259
|
/**
|
|
250
260
|
* Type definition for `AWS::S3::Bucket.BucketEncryption`.
|
|
251
261
|
* Specifies default encryption for a bucket using server-side encryption with Amazon S3-managed keys (SSE-S3), AWS KMS-managed keys (SSE-KMS), or dual-layer server-side encryption with KMS-managed keys (DSSE-KMS). For information about the Amazon S3 default encryption feature, see [Amazon S3 Default Encryption for S3 Buckets](https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html) in the *Amazon S3 User Guide*.
|
|
@@ -1272,6 +1282,7 @@ export type ServerSideEncryptionByDefault = {
|
|
|
1272
1282
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
|
|
1273
1283
|
*/
|
|
1274
1284
|
export type ServerSideEncryptionRule = {
|
|
1285
|
+
BlockedEncryptionTypes?: BlockedEncryptionTypes;
|
|
1275
1286
|
/**
|
|
1276
1287
|
* Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
|
|
1277
1288
|
For more information, see [Amazon S3 Bucket Keys](https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html) in the *Amazon S3 User Guide*.
|
|
@@ -5,6 +5,12 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
|
|
6
6
|
*/
|
|
7
7
|
export type SageMakerPartnerAppProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The version of the PartnerApp.
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `64`
|
|
12
|
+
*/
|
|
13
|
+
AppVersion?: string;
|
|
8
14
|
/**
|
|
9
15
|
* A collection of settings that specify the maintenance schedule for the PartnerApp.
|
|
10
16
|
*/
|
|
@@ -20,6 +26,10 @@ export type SageMakerPartnerAppProperties = {
|
|
|
20
26
|
* @pattern `^[a-zA-Z0-9-]+$`
|
|
21
27
|
*/
|
|
22
28
|
ClientToken?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Enables automatic minor version upgrades for the PartnerApp.
|
|
31
|
+
*/
|
|
32
|
+
EnableAutoMinorVersionUpgrade?: boolean;
|
|
23
33
|
/**
|
|
24
34
|
* Enables IAM Session based Identity for PartnerApp.
|
|
25
35
|
*/
|
|
@@ -82,6 +92,10 @@ export type SageMakerPartnerAppAttributes = {
|
|
|
82
92
|
* @maxLength `2048`
|
|
83
93
|
*/
|
|
84
94
|
BaseUrl: string;
|
|
95
|
+
/**
|
|
96
|
+
* The end-of-life date for the current version of the PartnerApp.
|
|
97
|
+
*/
|
|
98
|
+
CurrentVersionEolDate: string;
|
|
85
99
|
};
|
|
86
100
|
/**
|
|
87
101
|
* Type definition for `AWS::SageMaker::PartnerApp.PartnerAppConfig`.
|