@awboost/cfn-resource-types 0.1.213 → 0.1.215
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-ApplicationAutoScaling-ScalingPolicy.d.ts +98 -12
- package/lib/AWS-CleanRooms-ConfiguredTable.d.ts +84 -0
- package/lib/AWS-CleanRooms-ConfiguredTableAssociation.d.ts +1 -1
- package/lib/AWS-CloudFront-Distribution.d.ts +16 -1
- package/lib/AWS-Connect-Rule.d.ts +43 -43
- package/lib/AWS-Connect-Rule.js +1 -1
- package/lib/AWS-Connect-TaskTemplate.d.ts +5 -0
- package/lib/AWS-ConnectCampaignsV2-Campaign.d.ts +20 -2
- package/lib/AWS-DynamoDB-Table.d.ts +2 -2
- package/lib/AWS-EC2-CustomerGateway.d.ts +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -0
- package/lib/AWS-ECS-TaskDefinition.d.ts +4 -0
- package/lib/AWS-EMRServerless-Application.d.ts +19 -0
- package/lib/AWS-IoT-Command.d.ts +160 -0
- package/lib/AWS-IoT-Command.js +13 -0
- package/lib/AWS-Logs-LogGroup.d.ts +1 -0
- package/lib/AWS-Logs-MetricFilter.d.ts +1 -0
- package/lib/AWS-Logs-QueryDefinition.d.ts +4 -0
- package/lib/AWS-Logs-SubscriptionFilter.d.ts +1 -0
- package/lib/AWS-Logs-Transformer.d.ts +375 -0
- package/lib/AWS-Logs-Transformer.js +13 -0
- package/lib/AWS-M2-Environment.d.ts +6 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts +144 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.js +12 -0
- package/lib/AWS-Organizations-Policy.d.ts +2 -2
- package/lib/AWS-RAM-ResourceShare.d.ts +40 -3
- package/lib/AWS-RAM-ResourceShare.js +1 -1
- package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +38 -28
- package/lib/AWS-RDS-CustomDBEngineVersion.js +2 -1
- package/lib/AWS-RedshiftServerless-Workgroup.d.ts +36 -0
- package/lib/AWS-S3Express-DirectoryBucket.d.ts +5 -5
- package/package.json +1 -1
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
|
|
5
|
+
* Creates a custom DB engine version (CEV).
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
|
|
6
7
|
*/
|
|
7
8
|
export type RDSCustomDBEngineVersionProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is
|
|
10
|
+
* The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is ``my-custom-installation-files``.
|
|
10
11
|
* @minLength `3`
|
|
11
12
|
* @maxLength `63`
|
|
12
13
|
*/
|
|
13
14
|
DatabaseInstallationFilesS3BucketName?: string;
|
|
14
15
|
/**
|
|
15
|
-
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is
|
|
16
|
+
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is ``123456789012/cev1``. If this setting isn't specified, no prefix is assumed.
|
|
16
17
|
* @minLength `1`
|
|
17
18
|
* @maxLength `255`
|
|
18
19
|
*/
|
|
@@ -24,47 +25,57 @@ export type RDSCustomDBEngineVersionProperties = {
|
|
|
24
25
|
*/
|
|
25
26
|
Description?: string;
|
|
26
27
|
/**
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
* The database engine to use for your custom engine version (CEV).
|
|
29
|
+
Valid values:
|
|
30
|
+
+ ``custom-oracle-ee``
|
|
31
|
+
+ ``custom-oracle-ee-cdb``
|
|
32
|
+
* @minLength `1`
|
|
33
|
+
* @maxLength `35`
|
|
34
|
+
*/
|
|
31
35
|
Engine: string;
|
|
32
36
|
/**
|
|
33
|
-
* The name of your CEV. The name format is
|
|
37
|
+
* The name of your CEV. The name format is ``major version.customized_string``. For example, a valid CEV name is ``19.my_cev1``. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of ``Engine`` and ``EngineVersion`` is unique per customer per Region.
|
|
38
|
+
*Constraints:* Minimum length is 1. Maximum length is 60.
|
|
39
|
+
*Pattern:* ``^[a-z0-9_.-]{1,60$``}
|
|
34
40
|
* @minLength `1`
|
|
35
41
|
* @maxLength `60`
|
|
36
42
|
*/
|
|
37
43
|
EngineVersion: string;
|
|
38
44
|
/**
|
|
39
|
-
*
|
|
45
|
+
* A value that indicates the ID of the AMI.
|
|
40
46
|
*/
|
|
41
47
|
ImageId?: string;
|
|
42
48
|
/**
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
49
|
+
* The AWS KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS.
|
|
50
|
+
If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric encryption KMS key in your account, follow the instructions in [Creating a symmetric encryption KMS key](https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-symmetric-cmk) in the *Key Management Service Developer Guide*.
|
|
51
|
+
You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.
|
|
52
|
+
* @minLength `1`
|
|
53
|
+
* @maxLength `2048`
|
|
54
|
+
*/
|
|
47
55
|
KMSKeyId?: string;
|
|
48
56
|
/**
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
57
|
+
* The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed.
|
|
58
|
+
The following JSON fields are valid:
|
|
59
|
+
+ MediaImportTemplateVersion Version of the CEV manifest. The date is in the format YYYY-MM-DD. + databaseInstallationFileNames Ordered list of installation files for the CEV. + opatchFileNames Ordered list of OPatch installers used for the Oracle DB engine. + psuRuPatchFileNames The PSU and RU patches for this CEV. + OtherPatchFileNames The patches that are not in the list of PSU and RU patches. Amazon RDS applies these patches after applying the PSU and RU patches.
|
|
60
|
+
For more information, see [Creating the CEV manifest](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest) in the *Amazon RDS User Guide*.
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
* @maxLength `51000`
|
|
63
|
+
*/
|
|
53
64
|
Manifest?: string;
|
|
54
65
|
/**
|
|
55
|
-
* The
|
|
66
|
+
* The ARN of a CEV to use as a source for creating a new CEV. You can specify a different Amazon Machine Imagine (AMI) by using either ``Source`` or ``UseAwsProvidedLatestImage``. You can't specify a different JSON manifest when you specify ``SourceCustomDbEngineVersionIdentifier``.
|
|
56
67
|
*/
|
|
57
68
|
SourceCustomDbEngineVersionIdentifier?: string;
|
|
58
69
|
/**
|
|
59
|
-
*
|
|
70
|
+
* A value that indicates the status of a custom engine version (CEV).
|
|
60
71
|
*/
|
|
61
72
|
Status?: "available" | "inactive" | "inactive-except-restore";
|
|
62
73
|
/**
|
|
63
|
-
*
|
|
74
|
+
* A list of tags. For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide.*
|
|
64
75
|
*/
|
|
65
76
|
Tags?: Tag[];
|
|
66
77
|
/**
|
|
67
|
-
*
|
|
78
|
+
* Specifies whether to use the latest service-provided Amazon Machine Image (AMI) for the CEV. If you specify ``UseAwsProvidedLatestImage``, you can't also specify ``ImageId``.
|
|
68
79
|
*/
|
|
69
80
|
UseAwsProvidedLatestImage?: boolean;
|
|
70
81
|
};
|
|
@@ -73,32 +84,31 @@ export type RDSCustomDBEngineVersionProperties = {
|
|
|
73
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html#aws-resource-rds-customdbengineversion-return-values}
|
|
74
85
|
*/
|
|
75
86
|
export type RDSCustomDBEngineVersionAttributes = {
|
|
76
|
-
/**
|
|
77
|
-
* The ARN of the custom engine version.
|
|
78
|
-
*/
|
|
79
87
|
DBEngineVersionArn: string;
|
|
80
88
|
};
|
|
81
89
|
/**
|
|
82
90
|
* Type definition for `AWS::RDS::CustomDBEngineVersion.Tag`.
|
|
83
|
-
*
|
|
91
|
+
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
92
|
+
For more information, see [Tagging Amazon RDS resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
|
|
84
93
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-customdbengineversion-tag.html}
|
|
85
94
|
*/
|
|
86
95
|
export type Tag = {
|
|
87
96
|
/**
|
|
88
|
-
*
|
|
97
|
+
* A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
|
|
89
98
|
* @minLength `1`
|
|
90
99
|
* @maxLength `128`
|
|
91
100
|
*/
|
|
92
101
|
Key: string;
|
|
93
102
|
/**
|
|
94
|
-
*
|
|
103
|
+
* A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
|
|
95
104
|
* @minLength `0`
|
|
96
105
|
* @maxLength `256`
|
|
97
106
|
*/
|
|
98
107
|
Value?: string;
|
|
99
108
|
};
|
|
100
109
|
/**
|
|
101
|
-
*
|
|
110
|
+
* Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
|
|
111
|
+
* Creates a custom DB engine version (CEV).
|
|
102
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
|
|
103
113
|
*/
|
|
104
114
|
export declare class RDSCustomDBEngineVersion extends $Resource<"AWS::RDS::CustomDBEngineVersion", RDSCustomDBEngineVersionProperties, RDSCustomDBEngineVersionAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
|
|
4
|
+
* Creates a custom DB engine version (CEV).
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
|
|
5
6
|
*/
|
|
6
7
|
export class RDSCustomDBEngineVersion extends $Resource {
|
|
@@ -28,6 +28,10 @@ export type RedshiftServerlessWorkgroupProperties = {
|
|
|
28
28
|
* The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
|
|
29
29
|
*/
|
|
30
30
|
Port?: number;
|
|
31
|
+
/**
|
|
32
|
+
* A property that represents the price performance target settings for the workgroup.
|
|
33
|
+
*/
|
|
34
|
+
PricePerformanceTarget?: PerformanceTarget;
|
|
31
35
|
/**
|
|
32
36
|
* A value that specifies whether the workgroup can be accessible from a public network.
|
|
33
37
|
*/
|
|
@@ -119,6 +123,14 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
|
119
123
|
* @pattern `^[a-z0-9-]+$`
|
|
120
124
|
*/
|
|
121
125
|
NamespaceName: string;
|
|
126
|
+
PricePerformanceTarget: {
|
|
127
|
+
/**
|
|
128
|
+
* @min `1`
|
|
129
|
+
* @max `100`
|
|
130
|
+
*/
|
|
131
|
+
Level: number;
|
|
132
|
+
Status: PerformanceTargetStatus;
|
|
133
|
+
};
|
|
122
134
|
PubliclyAccessible: boolean;
|
|
123
135
|
SecurityGroupIds: string[];
|
|
124
136
|
Status: WorkgroupStatus;
|
|
@@ -133,6 +145,23 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
|
133
145
|
WorkgroupName: string;
|
|
134
146
|
};
|
|
135
147
|
};
|
|
148
|
+
/**
|
|
149
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTarget`.
|
|
150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetarget.html}
|
|
151
|
+
*/
|
|
152
|
+
export type PerformanceTarget = {
|
|
153
|
+
/**
|
|
154
|
+
* @min `1`
|
|
155
|
+
* @max `100`
|
|
156
|
+
*/
|
|
157
|
+
Level?: number;
|
|
158
|
+
Status?: PerformanceTargetStatus;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTargetStatus`.
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetargetstatus.html}
|
|
163
|
+
*/
|
|
164
|
+
export type PerformanceTargetStatus = "ENABLED" | "DISABLED";
|
|
136
165
|
/**
|
|
137
166
|
* Type definition for `AWS::RedshiftServerless::Workgroup.Tag`.
|
|
138
167
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-tag.html}
|
|
@@ -149,6 +178,13 @@ export type Tag = {
|
|
|
149
178
|
*/
|
|
150
179
|
Value: string;
|
|
151
180
|
};
|
|
181
|
+
/**
|
|
182
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.Workgroup`.
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
|
|
184
|
+
*/
|
|
185
|
+
export type Workgroup = {
|
|
186
|
+
PricePerformanceTarget?: PerformanceTarget;
|
|
187
|
+
};
|
|
152
188
|
/**
|
|
153
189
|
* Type definition for `AWS::RedshiftServerless::Workgroup.WorkgroupStatus`.
|
|
154
190
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroupstatus.html}
|
|
@@ -10,21 +10,21 @@ export type S3ExpressDirectoryBucketProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
BucketEncryption?: BucketEncryption;
|
|
12
12
|
/**
|
|
13
|
-
* Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format 'bucket_base_name--
|
|
13
|
+
* Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone or Local Zone. The bucket name must also follow the format 'bucket_base_name--zone_id--x-s3'. The zone_id can be the ID of an Availability Zone or a Local Zone. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the bucket name.
|
|
14
14
|
* @maxLength `63`
|
|
15
15
|
* @pattern `^[a-z0-9][a-z0-9//.//-]*[a-z0-9]$`
|
|
16
16
|
*/
|
|
17
17
|
BucketName?: string;
|
|
18
18
|
/**
|
|
19
|
-
* Specifies the number of Availability Zone that's used for redundancy for the bucket.
|
|
19
|
+
* Specifies the number of Availability Zone or Local Zone that's used for redundancy for the bucket.
|
|
20
20
|
*/
|
|
21
|
-
DataRedundancy: "SingleAvailabilityZone";
|
|
21
|
+
DataRedundancy: "SingleAvailabilityZone" | "SingleLocalZone";
|
|
22
22
|
/**
|
|
23
23
|
* Lifecycle rules that define how Amazon S3 Express manages objects during their lifetime.
|
|
24
24
|
*/
|
|
25
25
|
LifecycleConfiguration?: LifecycleConfiguration;
|
|
26
26
|
/**
|
|
27
|
-
* Specifies the
|
|
27
|
+
* Specifies the Zone ID of the Availability Zone or Local Zone where the directory bucket will be created. An example Availability Zone ID value is 'use1-az5'.
|
|
28
28
|
*/
|
|
29
29
|
LocationName: string;
|
|
30
30
|
};
|
|
@@ -38,7 +38,7 @@ export type S3ExpressDirectoryBucketAttributes = {
|
|
|
38
38
|
*/
|
|
39
39
|
Arn: string;
|
|
40
40
|
/**
|
|
41
|
-
* Returns the code for the Availability Zone where the directory bucket was created.
|
|
41
|
+
* Returns the code for the Availability Zone or Local Zone where the directory bucket was created. An example for the code of an Availability Zone is 'us-east-1f'.
|
|
42
42
|
*/
|
|
43
43
|
AvailabilityZoneName: string;
|
|
44
44
|
};
|