@awboost/cfn-resource-types 0.1.481 → 0.1.483
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-Backup-BackupPlan.d.ts +1 -0
- 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-Cognito-Terms.d.ts +51 -0
- package/lib/AWS-Cognito-Terms.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +4 -4
- package/lib/AWS-CustomerProfiles-Domain.d.ts +52 -0
- package/lib/AWS-EC2-NatGateway.d.ts +14 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.d.ts +52 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.js +12 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts +89 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.js +12 -0
- package/lib/AWS-EC2-VPCEncryptionControl.d.ts +135 -0
- package/lib/AWS-EC2-VPCEncryptionControl.js +12 -0
- package/lib/AWS-ECS-ExpressGatewayService.d.ts +201 -0
- package/lib/AWS-ECS-ExpressGatewayService.js +12 -0
- package/lib/AWS-EKS-Cluster.d.ts +15 -0
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +2 -2
- package/lib/AWS-FSx-FileSystem.d.ts +1 -0
- package/lib/AWS-FSx-StorageVirtualMachine.d.ts +1 -0
- 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-OpenSearchServerless-Collection.d.ts +0 -30
- package/lib/AWS-PCS-Cluster.d.ts +47 -2
- package/lib/AWS-RUM-AppMonitor.d.ts +47 -0
- package/lib/AWS-Rbin-Rule.d.ts +1 -1
- package/lib/AWS-S3-Bucket.d.ts +11 -0
- package/lib/AWS-SageMaker-PartnerApp.d.ts +14 -0
- package/lib/AWS-SecretsManager-Secret.d.ts +1 -0
- package/lib/AWS-Wisdom-AIAgent.d.ts +59 -1
- package/package.json +1 -1
|
@@ -50,6 +50,7 @@ export type BackupRuleResourceType = {
|
|
|
50
50
|
ScheduleExpressionTimezone?: string;
|
|
51
51
|
StartWindowMinutes?: number;
|
|
52
52
|
TargetBackupVault: string;
|
|
53
|
+
TargetLogicallyAirGappedBackupVaultArn?: string;
|
|
53
54
|
};
|
|
54
55
|
/**
|
|
55
56
|
* Type definition for `AWS::Backup::BackupPlan.CopyActionResourceType`.
|
|
@@ -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.
|
|
@@ -0,0 +1,51 @@
|
|
|
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::Cognito::Terms
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CognitoTermsProperties = {
|
|
8
|
+
ClientId?: string;
|
|
9
|
+
Enforcement: TermsEnforcementType;
|
|
10
|
+
Links: LinksType;
|
|
11
|
+
/**
|
|
12
|
+
* @pattern `^(terms-of-use|privacy-policy)$`
|
|
13
|
+
*/
|
|
14
|
+
TermsName: string;
|
|
15
|
+
TermsSource: TermsSourceType;
|
|
16
|
+
UserPoolId: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::Cognito::Terms`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html#aws-resource-cognito-terms-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type CognitoTermsAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
|
|
25
|
+
*/
|
|
26
|
+
TermsId: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Type definition for `AWS::Cognito::Terms.LinksType`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-linkstype.html}
|
|
31
|
+
*/
|
|
32
|
+
export type LinksType = Record<string, string>;
|
|
33
|
+
/**
|
|
34
|
+
* Type definition for `AWS::Cognito::Terms.TermsEnforcementType`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termsenforcementtype.html}
|
|
36
|
+
*/
|
|
37
|
+
export type TermsEnforcementType = "NONE";
|
|
38
|
+
/**
|
|
39
|
+
* Type definition for `AWS::Cognito::Terms.TermsSourceType`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termssourcetype.html}
|
|
41
|
+
*/
|
|
42
|
+
export type TermsSourceType = "LINK";
|
|
43
|
+
/**
|
|
44
|
+
* Resource Type definition for AWS::Cognito::Terms
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
46
|
+
*/
|
|
47
|
+
export declare class CognitoTerms extends $Resource<"AWS::Cognito::Terms", CognitoTermsProperties, CognitoTermsAttributes> {
|
|
48
|
+
static readonly Type = "AWS::Cognito::Terms";
|
|
49
|
+
constructor(logicalId: string, properties: CognitoTermsProperties, options?: $ResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=AWS-Cognito-Terms.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::Cognito::Terms
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CognitoTerms extends $Resource {
|
|
7
|
+
static Type = "AWS::Cognito::Terms";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CognitoTerms.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Cognito-Terms.js.map
|
|
@@ -152,7 +152,7 @@ export type EvaluationFormItemEnablementExpression = {
|
|
|
152
152
|
/**
|
|
153
153
|
* Specifies the comparison method to determine if the source value matches any of the specified values.
|
|
154
154
|
*/
|
|
155
|
-
Comparator: "IN" | "NOT_IN";
|
|
155
|
+
Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
|
|
156
156
|
/**
|
|
157
157
|
* Identifies the form item whose value will be evaluated in the expression.
|
|
158
158
|
*/
|
|
@@ -279,7 +279,7 @@ export type EvaluationFormQuestion = {
|
|
|
279
279
|
* The type of the question.
|
|
280
280
|
*Allowed values*: ``NUMERIC`` | ``SINGLESELECT`` | ``TEXT``
|
|
281
281
|
*/
|
|
282
|
-
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT";
|
|
282
|
+
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT" | "MULTISELECT" | "DATETIME";
|
|
283
283
|
/**
|
|
284
284
|
* The properties of the type of question. Text questions do not have to define question type properties.
|
|
285
285
|
*/
|
|
@@ -312,7 +312,7 @@ export type EvaluationFormQuestion = {
|
|
|
312
312
|
*/
|
|
313
313
|
export type EvaluationFormQuestionAutomationAnswerSource = {
|
|
314
314
|
/**
|
|
315
|
-
* The type of the answer
|
|
315
|
+
* The type of the answer source
|
|
316
316
|
*/
|
|
317
317
|
SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
|
|
318
318
|
};
|
|
@@ -491,7 +491,7 @@ export type NumericQuestionPropertyValueAutomation = {
|
|
|
491
491
|
/**
|
|
492
492
|
* The property label of the automation.
|
|
493
493
|
*/
|
|
494
|
-
Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION";
|
|
494
|
+
Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT";
|
|
495
495
|
};
|
|
496
496
|
/**
|
|
497
497
|
* Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
|
|
@@ -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`.
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2TransitGatewayMeteringPolicyProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Middle box attachment Ids
|
|
10
|
+
*/
|
|
11
|
+
MiddleboxAttachmentIds?: string[];
|
|
12
|
+
Tags?: Tag[];
|
|
13
|
+
/**
|
|
14
|
+
* The Id of transit gateway
|
|
15
|
+
*/
|
|
16
|
+
TransitGatewayId: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicy`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#aws-resource-ec2-transitgatewaymeteringpolicy-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type EC2TransitGatewayMeteringPolicyAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* State of the transit gateway metering policy
|
|
25
|
+
*/
|
|
26
|
+
State: string;
|
|
27
|
+
/**
|
|
28
|
+
* The Id of the transit gateway metering policy
|
|
29
|
+
*/
|
|
30
|
+
TransitGatewayMeteringPolicyId: string;
|
|
31
|
+
/**
|
|
32
|
+
* The timestamp at which the latest action performed on the metering policy will become effective
|
|
33
|
+
*/
|
|
34
|
+
UpdateEffectiveAt: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicy.Tag`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicy-tag.html}
|
|
39
|
+
*/
|
|
40
|
+
export type Tag = {
|
|
41
|
+
Key: string;
|
|
42
|
+
Value: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
47
|
+
*/
|
|
48
|
+
export declare class EC2TransitGatewayMeteringPolicy extends $Resource<"AWS::EC2::TransitGatewayMeteringPolicy", EC2TransitGatewayMeteringPolicyProperties, EC2TransitGatewayMeteringPolicyAttributes> {
|
|
49
|
+
static readonly Type = "AWS::EC2::TransitGatewayMeteringPolicy";
|
|
50
|
+
constructor(logicalId: string, properties: EC2TransitGatewayMeteringPolicyProperties, options?: $ResourceOptions);
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicy.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EC2TransitGatewayMeteringPolicy extends $Resource {
|
|
7
|
+
static Type = "AWS::EC2::TransitGatewayMeteringPolicy";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EC2TransitGatewayMeteringPolicy.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicy.js.map
|
|
@@ -0,0 +1,89 @@
|
|
|
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
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2TransitGatewayMeteringPolicyEntryProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The list of IP addresses of the instances receiving traffic from the transit gateway
|
|
10
|
+
*/
|
|
11
|
+
DestinationCidrBlock?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The list of ports on destination instances receiving traffic from the transit gateway
|
|
14
|
+
*/
|
|
15
|
+
DestinationPortRange?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The ID of the source attachment through which traffic leaves a transit gateway
|
|
18
|
+
*/
|
|
19
|
+
DestinationTransitGatewayAttachmentId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The type of the attachment through which traffic leaves a transit gateway
|
|
22
|
+
*/
|
|
23
|
+
DestinationTransitGatewayAttachmentType?: TransitGatewayAttachmentResourceType;
|
|
24
|
+
/**
|
|
25
|
+
* The resource owner information responsible for paying default billable charges for the traffic flow
|
|
26
|
+
*/
|
|
27
|
+
MeteredAccount: TransitGatewayMeteringPayerType;
|
|
28
|
+
/**
|
|
29
|
+
* The rule number of the metering policy entry
|
|
30
|
+
*/
|
|
31
|
+
PolicyRuleNumber: number;
|
|
32
|
+
/**
|
|
33
|
+
* The protocol of the traffic
|
|
34
|
+
*/
|
|
35
|
+
Protocol?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The list of IP addresses of the instances sending traffic to the transit gateway for which the metering policy entry is applicable
|
|
38
|
+
*/
|
|
39
|
+
SourceCidrBlock?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The list of ports on source instances sending traffic to the transit gateway
|
|
42
|
+
*/
|
|
43
|
+
SourcePortRange?: string;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the source attachment through which traffic enters a transit gateway
|
|
46
|
+
*/
|
|
47
|
+
SourceTransitGatewayAttachmentId?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The type of the attachment through which traffic enters a transit gateway
|
|
50
|
+
*/
|
|
51
|
+
SourceTransitGatewayAttachmentType?: TransitGatewayAttachmentResourceType;
|
|
52
|
+
/**
|
|
53
|
+
* The ID of the transit gateway metering policy for which the entry is being created
|
|
54
|
+
*/
|
|
55
|
+
TransitGatewayMeteringPolicyId: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html#aws-resource-ec2-transitgatewaymeteringpolicyentry-return-values}
|
|
60
|
+
*/
|
|
61
|
+
export type EC2TransitGatewayMeteringPolicyEntryAttributes = {
|
|
62
|
+
/**
|
|
63
|
+
* State of the transit gateway metering policy
|
|
64
|
+
*/
|
|
65
|
+
State: string;
|
|
66
|
+
/**
|
|
67
|
+
* The timestamp at which the latest action performed on the metering policy entry will become effective
|
|
68
|
+
*/
|
|
69
|
+
UpdateEffectiveAt: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayAttachmentResourceType`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewayattachmentresourcetype.html}
|
|
74
|
+
*/
|
|
75
|
+
export type TransitGatewayAttachmentResourceType = "vpc" | "vpn" | "direct-connect-gateway" | "peering" | "network-function" | "vpn-concentrator";
|
|
76
|
+
/**
|
|
77
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayMeteringPayerType`.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewaymeteringpayertype.html}
|
|
79
|
+
*/
|
|
80
|
+
export type TransitGatewayMeteringPayerType = "source-attachment-owner" | "destination-attachment-owner" | "transit-gateway-owner";
|
|
81
|
+
/**
|
|
82
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
84
|
+
*/
|
|
85
|
+
export declare class EC2TransitGatewayMeteringPolicyEntry extends $Resource<"AWS::EC2::TransitGatewayMeteringPolicyEntry", EC2TransitGatewayMeteringPolicyEntryProperties, EC2TransitGatewayMeteringPolicyEntryAttributes> {
|
|
86
|
+
static readonly Type = "AWS::EC2::TransitGatewayMeteringPolicyEntry";
|
|
87
|
+
constructor(logicalId: string, properties: EC2TransitGatewayMeteringPolicyEntryProperties, options?: $ResourceOptions);
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EC2TransitGatewayMeteringPolicyEntry extends $Resource {
|
|
7
|
+
static Type = "AWS::EC2::TransitGatewayMeteringPolicyEntry";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EC2TransitGatewayMeteringPolicyEntry.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicyEntry.js.map
|
|
@@ -0,0 +1,135 @@
|
|
|
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::EC2::VPCEncryptionControl
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2VPCEncryptionControlProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Used to enable or disable EIGW exclusion
|
|
10
|
+
*/
|
|
11
|
+
EgressOnlyInternetGatewayExclusionInput?: "enable" | "disable";
|
|
12
|
+
/**
|
|
13
|
+
* Used to enable or disable EFS exclusion
|
|
14
|
+
*/
|
|
15
|
+
ElasticFileSystemExclusionInput?: "enable" | "disable";
|
|
16
|
+
/**
|
|
17
|
+
* Used to enable or disable IGW exclusion
|
|
18
|
+
*/
|
|
19
|
+
InternetGatewayExclusionInput?: "enable" | "disable";
|
|
20
|
+
/**
|
|
21
|
+
* Used to enable or disable Lambda exclusion
|
|
22
|
+
*/
|
|
23
|
+
LambdaExclusionInput?: "enable" | "disable";
|
|
24
|
+
/**
|
|
25
|
+
* The VPC encryption control mode, either monitor or enforce.
|
|
26
|
+
*/
|
|
27
|
+
Mode?: "monitor" | "enforce";
|
|
28
|
+
/**
|
|
29
|
+
* Used to enable or disable Nat gateway exclusion
|
|
30
|
+
*/
|
|
31
|
+
NatGatewayExclusionInput?: "enable" | "disable";
|
|
32
|
+
/**
|
|
33
|
+
* The tags to assign to the VPC encryption control.
|
|
34
|
+
*/
|
|
35
|
+
Tags?: Tag[];
|
|
36
|
+
/**
|
|
37
|
+
* Used to enable or disable VGW exclusion
|
|
38
|
+
*/
|
|
39
|
+
VirtualPrivateGatewayExclusionInput?: "enable" | "disable";
|
|
40
|
+
/**
|
|
41
|
+
* The VPC on which this VPC encryption control is applied.
|
|
42
|
+
*/
|
|
43
|
+
VpcId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Used to enable or disable Vpc Lattice exclusion
|
|
46
|
+
*/
|
|
47
|
+
VpcLatticeExclusionInput?: "enable" | "disable";
|
|
48
|
+
/**
|
|
49
|
+
* Used to enable or disable VPC peering exclusion
|
|
50
|
+
*/
|
|
51
|
+
VpcPeeringExclusionInput?: "enable" | "disable";
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Attribute type definition for `AWS::EC2::VPCEncryptionControl`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html#aws-resource-ec2-vpcencryptioncontrol-return-values}
|
|
56
|
+
*/
|
|
57
|
+
export type EC2VPCEncryptionControlAttributes = {
|
|
58
|
+
/**
|
|
59
|
+
* Enumerates the states of all the VPC encryption control resource exclusions
|
|
60
|
+
*/
|
|
61
|
+
ResourceExclusions: {
|
|
62
|
+
EgressOnlyInternetGateway: {
|
|
63
|
+
State: string;
|
|
64
|
+
StateMessage: string;
|
|
65
|
+
};
|
|
66
|
+
ElasticFileSystem: {
|
|
67
|
+
State: string;
|
|
68
|
+
StateMessage: string;
|
|
69
|
+
};
|
|
70
|
+
InternetGateway: {
|
|
71
|
+
State: string;
|
|
72
|
+
StateMessage: string;
|
|
73
|
+
};
|
|
74
|
+
Lambda: {
|
|
75
|
+
State: string;
|
|
76
|
+
StateMessage: string;
|
|
77
|
+
};
|
|
78
|
+
NatGateway: {
|
|
79
|
+
State: string;
|
|
80
|
+
StateMessage: string;
|
|
81
|
+
};
|
|
82
|
+
VirtualPrivateGateway: {
|
|
83
|
+
State: string;
|
|
84
|
+
StateMessage: string;
|
|
85
|
+
};
|
|
86
|
+
VpcLattice: {
|
|
87
|
+
State: string;
|
|
88
|
+
StateMessage: string;
|
|
89
|
+
};
|
|
90
|
+
VpcPeering: {
|
|
91
|
+
State: string;
|
|
92
|
+
StateMessage: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* The current state of the VPC encryption control.
|
|
97
|
+
*/
|
|
98
|
+
State: "creating" | "available" | "monitor-in-progress" | "enforce-in-progress" | "monitor-failed" | "enforce-failed" | "deleting" | "deleted" | "delete-failed";
|
|
99
|
+
/**
|
|
100
|
+
* Provides additional context on the state of the VPC encryption control.
|
|
101
|
+
*/
|
|
102
|
+
StateMessage: string;
|
|
103
|
+
/**
|
|
104
|
+
* The VPC encryption control resource id.
|
|
105
|
+
*/
|
|
106
|
+
VpcEncryptionControlId: string;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* Type definition for `AWS::EC2::VPCEncryptionControl.Tag`.
|
|
110
|
+
* A key-value pair to associate with a resource.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcencryptioncontrol-tag.html}
|
|
112
|
+
*/
|
|
113
|
+
export type Tag = {
|
|
114
|
+
/**
|
|
115
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
116
|
+
* @minLength `1`
|
|
117
|
+
* @maxLength `128`
|
|
118
|
+
*/
|
|
119
|
+
Key: string;
|
|
120
|
+
/**
|
|
121
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
122
|
+
* @minLength `0`
|
|
123
|
+
* @maxLength `256`
|
|
124
|
+
*/
|
|
125
|
+
Value: string;
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* Resource Type definition for AWS::EC2::VPCEncryptionControl
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
|
|
130
|
+
*/
|
|
131
|
+
export declare class EC2VPCEncryptionControl extends $Resource<"AWS::EC2::VPCEncryptionControl", EC2VPCEncryptionControlProperties, EC2VPCEncryptionControlAttributes> {
|
|
132
|
+
static readonly Type = "AWS::EC2::VPCEncryptionControl";
|
|
133
|
+
constructor(logicalId: string, properties: EC2VPCEncryptionControlProperties, options?: $ResourceOptions);
|
|
134
|
+
}
|
|
135
|
+
//# sourceMappingURL=AWS-EC2-VPCEncryptionControl.d.ts.map
|