@awboost/cfn-resource-types 0.1.398 → 0.1.400
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-ARCRegionSwitch-Plan.d.ts +6 -0
- package/lib/AWS-AppIntegrations-Application.d.ts +38 -0
- package/lib/AWS-Connect-User.d.ts +4 -0
- package/lib/AWS-EFS-MountTarget.d.ts +10 -3
- package/lib/AWS-IoT-MitigationAction.d.ts +2 -2
- package/lib/AWS-Lambda-Permission.d.ts +2 -2
- package/lib/AWS-RDS-DBCluster.d.ts +3 -0
- package/lib/AWS-RDS-DBInstance.d.ts +0 -3
- package/lib/AWS-Synthetics-Canary.d.ts +22 -0
- package/package.json +1 -1
|
@@ -54,6 +54,12 @@ export type ARCRegionSwitchPlanAttributes = {
|
|
|
54
54
|
* @pattern `^\d{12}$`
|
|
55
55
|
*/
|
|
56
56
|
Owner: string;
|
|
57
|
+
Route53HealthChecks: {
|
|
58
|
+
HealthCheckIds: string[];
|
|
59
|
+
HostedZoneIds: string[];
|
|
60
|
+
RecordNames: string[];
|
|
61
|
+
Regions: string[];
|
|
62
|
+
};
|
|
57
63
|
Version: string;
|
|
58
64
|
};
|
|
59
65
|
/**
|
|
@@ -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-appintegrations-application.html}
|
|
7
7
|
*/
|
|
8
8
|
export type AppIntegrationsApplicationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The application configuration. Cannot be used when IsService is true.
|
|
11
|
+
*/
|
|
12
|
+
ApplicationConfig?: ApplicationConfig;
|
|
9
13
|
/**
|
|
10
14
|
* Application source config
|
|
11
15
|
*/
|
|
@@ -18,6 +22,18 @@ export type AppIntegrationsApplicationProperties = {
|
|
|
18
22
|
* @maxLength `1000`
|
|
19
23
|
*/
|
|
20
24
|
Description: string;
|
|
25
|
+
/**
|
|
26
|
+
* The iframe configuration
|
|
27
|
+
*/
|
|
28
|
+
IframeConfig?: IframeConfig;
|
|
29
|
+
/**
|
|
30
|
+
* The initialization timeout in milliseconds. Required when IsService is true.
|
|
31
|
+
*/
|
|
32
|
+
InitializationTimeout?: number;
|
|
33
|
+
/**
|
|
34
|
+
* Indicates if the application is a service
|
|
35
|
+
*/
|
|
36
|
+
IsService?: boolean;
|
|
21
37
|
/**
|
|
22
38
|
* The name of the application.
|
|
23
39
|
* @minLength `1`
|
|
@@ -65,6 +81,20 @@ export type AppIntegrationsApplicationAttributes = {
|
|
|
65
81
|
*/
|
|
66
82
|
Id: string;
|
|
67
83
|
};
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::AppIntegrations::Application.ApplicationConfig`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-applicationconfig.html}
|
|
87
|
+
*/
|
|
88
|
+
export type ApplicationConfig = {
|
|
89
|
+
ContactHandling?: ContactHandling;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::AppIntegrations::Application.ContactHandling`.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-contacthandling.html}
|
|
94
|
+
*/
|
|
95
|
+
export type ContactHandling = {
|
|
96
|
+
Scope: "CROSS_CONTACTS" | "PER_CONTACT";
|
|
97
|
+
};
|
|
68
98
|
/**
|
|
69
99
|
* Type definition for `AWS::AppIntegrations::Application.ExternalUrlConfig`.
|
|
70
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-externalurlconfig.html}
|
|
@@ -82,6 +112,14 @@ export type ExternalUrlConfig = {
|
|
|
82
112
|
*/
|
|
83
113
|
ApprovedOrigins?: string[];
|
|
84
114
|
};
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::AppIntegrations::Application.IframeConfig`.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-iframeconfig.html}
|
|
118
|
+
*/
|
|
119
|
+
export type IframeConfig = {
|
|
120
|
+
Allow?: string[];
|
|
121
|
+
Sandbox?: string[];
|
|
122
|
+
};
|
|
85
123
|
/**
|
|
86
124
|
* Type definition for `AWS::AppIntegrations::Application.Tag`.
|
|
87
125
|
* A label for tagging Application resources
|
|
@@ -144,6 +144,10 @@ export type UserPhoneConfig = {
|
|
|
144
144
|
* The phone number for the user's desk phone.
|
|
145
145
|
*/
|
|
146
146
|
DeskPhoneNumber?: string;
|
|
147
|
+
/**
|
|
148
|
+
* The Persistent Connection setting.
|
|
149
|
+
*/
|
|
150
|
+
PersistentConnection?: boolean;
|
|
147
151
|
/**
|
|
148
152
|
* The phone type.
|
|
149
153
|
*/
|
|
@@ -10,17 +10,24 @@ export type EFSMountTargetProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
FileSystemId: string;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* If the ``IpAddressType`` for the mount target is IPv4 ( ``IPV4_ONLY`` or ``DUAL_STACK``), then specify the IPv4 address to use. If you do not specify an ``IpAddress``, then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId``.
|
|
14
14
|
*/
|
|
15
15
|
IpAddress?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The IP address type for the mount target. The possible values are ``IPV4_ONLY`` (only IPv4 addresses), ``IPV6_ONLY`` (only IPv6 addresses), and ``DUAL_STACK`` (dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an ``IpAddressType``, then ``IPV4_ONLY`` is used.
|
|
18
|
+
The ``IPAddressType`` must match the IP type of the subnet. Additionally, the ``IPAddressType`` parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if the ``IPAddressType`` is ``IPV4_ONLY`` and ``AssignIpv6AddressOnCreation`` is ``true``, then IPv4 is used for the mount target. For more information, see [Modify the IP addressing attributes of your subnet](https://docs.aws.amazon.com/vpc/latest/userguide/subnet-public-ip.html).
|
|
19
|
+
*/
|
|
16
20
|
IpAddressType?: "IPV4_ONLY" | "IPV6_ONLY" | "DUAL_STACK";
|
|
21
|
+
/**
|
|
22
|
+
* If the ``IPAddressType`` for the mount target is IPv6 (``IPV6_ONLY`` or ``DUAL_STACK``), then specify the IPv6 address to use. If you do not specify an ``Ipv6Address``, then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId``.
|
|
23
|
+
*/
|
|
17
24
|
Ipv6Address?: string;
|
|
18
25
|
/**
|
|
19
|
-
* VPC security group IDs, of the form ``sg-xxxxxxxx``. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see [Amazon VPC Quotas](https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html) in the *Amazon VPC User Guide* (see the *Security Groups* table).
|
|
26
|
+
* VPC security group IDs, of the form ``sg-xxxxxxxx``. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see [Amazon VPC Quotas](https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html) in the *Amazon VPC User Guide* (see the *Security Groups* table). If you don't specify a security group, then Amazon EFS uses the default security group for the subnet's VPC.
|
|
20
27
|
*/
|
|
21
28
|
SecurityGroups: string[];
|
|
22
29
|
/**
|
|
23
|
-
* The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone.
|
|
30
|
+
* The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone. The subnet type must be the same type as the ``IpAddressType``.
|
|
24
31
|
*/
|
|
25
32
|
SubnetId: string;
|
|
26
33
|
};
|
|
@@ -92,7 +92,7 @@ export type EnableIoTLoggingParams = {
|
|
|
92
92
|
LogLevel: "DEBUG" | "INFO" | "ERROR" | "WARN" | "UNSET_VALUE";
|
|
93
93
|
/**
|
|
94
94
|
* The ARN of the IAM role used for logging.
|
|
95
|
-
* @minLength `
|
|
95
|
+
* @minLength `11`
|
|
96
96
|
* @maxLength `2048`
|
|
97
97
|
*/
|
|
98
98
|
RoleArnForLogging: string;
|
|
@@ -105,7 +105,7 @@ export type EnableIoTLoggingParams = {
|
|
|
105
105
|
export type PublishFindingToSnsParams = {
|
|
106
106
|
/**
|
|
107
107
|
* The ARN of the topic to which you want to publish the findings.
|
|
108
|
-
* @minLength `
|
|
108
|
+
* @minLength `11`
|
|
109
109
|
* @maxLength `2048`
|
|
110
110
|
*/
|
|
111
111
|
TopicArn: string;
|
|
@@ -32,7 +32,7 @@ export type LambdaPermissionProperties = {
|
|
|
32
32
|
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
|
|
33
33
|
* @minLength `1`
|
|
34
34
|
* @maxLength `140`
|
|
35
|
-
* @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
|
|
35
|
+
* @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
|
|
36
36
|
*/
|
|
37
37
|
FunctionName: string;
|
|
38
38
|
/**
|
|
@@ -65,7 +65,7 @@ export type LambdaPermissionProperties = {
|
|
|
65
65
|
Note that Lambda configures the comparison using the ``StringLike`` operator.
|
|
66
66
|
* @minLength `12`
|
|
67
67
|
* @maxLength `1024`
|
|
68
|
-
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.*)$`
|
|
68
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.*)$`
|
|
69
69
|
*/
|
|
70
70
|
SourceArn?: string;
|
|
71
71
|
};
|
|
@@ -465,6 +465,9 @@ export type RDSDBClusterProperties = {
|
|
|
465
465
|
Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
466
466
|
*/
|
|
467
467
|
SourceDBClusterIdentifier?: string;
|
|
468
|
+
/**
|
|
469
|
+
* The resource ID of the source DB cluster from which to restore.
|
|
470
|
+
*/
|
|
468
471
|
SourceDbClusterResourceId?: string;
|
|
469
472
|
/**
|
|
470
473
|
* The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1``.
|
|
@@ -895,9 +895,6 @@ export type RDSDBInstanceAttributes = {
|
|
|
895
895
|
ReadReplicaDBInstanceIdentifiers: string[];
|
|
896
896
|
ResumeFullAutomationModeTime: string;
|
|
897
897
|
SecondaryAvailabilityZone: string;
|
|
898
|
-
/**
|
|
899
|
-
* The status of a read replica. If the DB instance isn't a read replica, the value is blank.
|
|
900
|
-
*/
|
|
901
898
|
StatusInfos: {
|
|
902
899
|
/**
|
|
903
900
|
* Details of the error if there is an error for the instance. If the instance isn't in an error state, this value is blank.
|
|
@@ -126,12 +126,34 @@ export type BaseScreenshot = {
|
|
|
126
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html}
|
|
127
127
|
*/
|
|
128
128
|
export type Code = {
|
|
129
|
+
/**
|
|
130
|
+
* List of Lambda layers to attach to the canary
|
|
131
|
+
* @maxLength `1`
|
|
132
|
+
*/
|
|
133
|
+
Dependencies?: Dependency[];
|
|
129
134
|
Handler: string;
|
|
130
135
|
S3Bucket?: string;
|
|
131
136
|
S3Key?: string;
|
|
132
137
|
S3ObjectVersion?: string;
|
|
133
138
|
Script?: string;
|
|
134
139
|
};
|
|
140
|
+
/**
|
|
141
|
+
* Type definition for `AWS::Synthetics::Canary.Dependency`.
|
|
142
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-dependency.html}
|
|
143
|
+
*/
|
|
144
|
+
export type Dependency = {
|
|
145
|
+
/**
|
|
146
|
+
* ARN of the Lambda layer
|
|
147
|
+
* @minLength `1`
|
|
148
|
+
* @maxLength `140`
|
|
149
|
+
* @pattern `arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+:[0-9]+`
|
|
150
|
+
*/
|
|
151
|
+
Reference: string;
|
|
152
|
+
/**
|
|
153
|
+
* Type of dependency
|
|
154
|
+
*/
|
|
155
|
+
Type?: "LambdaLayer";
|
|
156
|
+
};
|
|
135
157
|
/**
|
|
136
158
|
* Type definition for `AWS::Synthetics::Canary.ResourceToTag`.
|
|
137
159
|
* Specifies which resources canary tags should be replicated to.
|