@awboost/cfn-resource-types 0.1.216 → 0.1.218
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-AppConfig-ConfigurationProfile.d.ts +4 -0
- package/lib/AWS-AppConfig-Environment.d.ts +4 -0
- package/lib/AWS-Cassandra-Keyspace.d.ts +4 -0
- package/lib/AWS-Cassandra-Type.d.ts +63 -0
- package/lib/AWS-Cassandra-Type.js +12 -0
- package/lib/AWS-FIS-ExperimentTemplate.d.ts +1 -1
- package/lib/AWS-RDS-DBCluster.d.ts +6 -2
- package/lib/AWS-RDS-DBInstance.d.ts +4 -4
- package/package.json +1 -1
|
@@ -11,6 +11,10 @@ export type AppConfigConfigurationProfileProperties = {
|
|
|
11
11
|
* @pattern `[a-z0-9]{4,7}`
|
|
12
12
|
*/
|
|
13
13
|
ApplicationId: string;
|
|
14
|
+
/**
|
|
15
|
+
* On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting. See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
|
|
16
|
+
*/
|
|
17
|
+
DeletionProtectionCheck?: "ACCOUNT_DEFAULT" | "APPLY" | "BYPASS";
|
|
14
18
|
/**
|
|
15
19
|
* A description of the configuration profile.
|
|
16
20
|
* @minLength `0`
|
|
@@ -10,6 +10,10 @@ export type AppConfigEnvironmentProperties = {
|
|
|
10
10
|
* @pattern `[a-z0-9]{4,7}`
|
|
11
11
|
*/
|
|
12
12
|
ApplicationId: string;
|
|
13
|
+
/**
|
|
14
|
+
* On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting. See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
|
|
15
|
+
*/
|
|
16
|
+
DeletionProtectionCheck?: "ACCOUNT_DEFAULT" | "APPLY" | "BYPASS";
|
|
13
17
|
/**
|
|
14
18
|
* A description of the environment.
|
|
15
19
|
* @minLength `0`
|
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html}
|
|
6
6
|
*/
|
|
7
7
|
export type CassandraKeyspaceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
|
|
10
|
+
*/
|
|
11
|
+
ClientSideTimestampsEnabled?: boolean;
|
|
8
12
|
/**
|
|
9
13
|
* Name for Cassandra keyspace
|
|
10
14
|
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_]{1,47}$`
|
|
@@ -0,0 +1,63 @@
|
|
|
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 schema for AWS::Cassandra::Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-type.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CassandraTypeProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Field definitions of the User-Defined Type
|
|
10
|
+
*/
|
|
11
|
+
Fields: Field[];
|
|
12
|
+
/**
|
|
13
|
+
* Name of the Keyspace which contains the User-Defined Type.
|
|
14
|
+
*/
|
|
15
|
+
KeyspaceName: string;
|
|
16
|
+
/**
|
|
17
|
+
* Name of the User-Defined Type.
|
|
18
|
+
*/
|
|
19
|
+
TypeName: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::Cassandra::Type`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-type.html#aws-resource-cassandra-type-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type CassandraTypeAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* List of parent User-Defined Types that directly reference the User-Defined Type in their fields.
|
|
28
|
+
*/
|
|
29
|
+
DirectParentTypes: string[];
|
|
30
|
+
/**
|
|
31
|
+
* List of Tables that directly reference the User-Defined Type in their columns.
|
|
32
|
+
*/
|
|
33
|
+
DirectReferringTables: string[];
|
|
34
|
+
/**
|
|
35
|
+
* ARN of the Keyspace which contains the User-Defined Type.
|
|
36
|
+
*/
|
|
37
|
+
KeyspaceArn: string;
|
|
38
|
+
/**
|
|
39
|
+
* Timestamp of the last time the User-Defined Type's meta data was modified.
|
|
40
|
+
*/
|
|
41
|
+
LastModifiedTimestamp: number;
|
|
42
|
+
/**
|
|
43
|
+
* Maximum nesting depth of the User-Defined Type across the field types.
|
|
44
|
+
*/
|
|
45
|
+
MaxNestingDepth: number;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::Cassandra::Type.Field`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-type-field.html}
|
|
50
|
+
*/
|
|
51
|
+
export type Field = {
|
|
52
|
+
FieldName: string;
|
|
53
|
+
FieldType: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Resource schema for AWS::Cassandra::Type
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-type.html}
|
|
58
|
+
*/
|
|
59
|
+
export declare class CassandraType extends $Resource<"AWS::Cassandra::Type", CassandraTypeProperties, CassandraTypeAttributes> {
|
|
60
|
+
static readonly Type = "AWS::Cassandra::Type";
|
|
61
|
+
constructor(logicalId: string, properties: CassandraTypeProperties, options?: $ResourceOptions);
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=AWS-Cassandra-Type.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource schema for AWS::Cassandra::Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-type.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CassandraType extends $Resource {
|
|
7
|
+
static Type = "AWS::Cassandra::Type";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CassandraType.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Cassandra-Type.js.map
|
|
@@ -104,7 +104,7 @@ export type ExperimentTemplateExperimentOptions = {
|
|
|
104
104
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-experimenttemplateexperimentreportconfiguration.html}
|
|
105
105
|
*/
|
|
106
106
|
export type ExperimentTemplateExperimentReportConfiguration = {
|
|
107
|
-
DataSources
|
|
107
|
+
DataSources?: {
|
|
108
108
|
CloudWatchDashboards?: CloudWatchDashboard[];
|
|
109
109
|
};
|
|
110
110
|
Outputs: {
|
|
@@ -61,6 +61,9 @@ export type RDSDBClusterProperties = {
|
|
|
61
61
|
* @min `1`
|
|
62
62
|
*/
|
|
63
63
|
BackupRetentionPeriod?: number;
|
|
64
|
+
/**
|
|
65
|
+
* Specifies the scalability mode of the Aurora DB cluster. When set to ``limitless``, the cluster operates as an Aurora Limitless Database, allowing you to create a DB shard group for horizontal scaling (sharding) capabilities. When set to ``standard`` (the default), the cluster uses normal DB instance creation.
|
|
66
|
+
*/
|
|
64
67
|
ClusterScalabilityType?: string;
|
|
65
68
|
/**
|
|
66
69
|
* A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster. The default is not to copy them.
|
|
@@ -191,7 +194,7 @@ export type RDSDBClusterProperties = {
|
|
|
191
194
|
* The life cycle type for this DB cluster.
|
|
192
195
|
By default, this value is set to ``open-source-rds-extended-support``, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to ``open-source-rds-extended-support-disabled``. In this case, creating the DB cluster will fail if the DB major version is past its end of standard support date.
|
|
193
196
|
You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:
|
|
194
|
-
+ Amazon Aurora
|
|
197
|
+
+ Amazon Aurora - [Using Amazon RDS Extended Support](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html) in the *Amazon Aurora User Guide*
|
|
195
198
|
+ Amazon RDS - [Using Amazon RDS Extended Support](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html) in the *Amazon RDS User Guide*
|
|
196
199
|
|
|
197
200
|
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -638,9 +641,10 @@ export type ServerlessV2ScalingConfiguration = {
|
|
|
638
641
|
*/
|
|
639
642
|
MaxCapacity?: number;
|
|
640
643
|
/**
|
|
641
|
-
* The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on.
|
|
644
|
+
* The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.
|
|
642
645
|
*/
|
|
643
646
|
MinCapacity?: number;
|
|
647
|
+
SecondsUntilAutoPause?: number;
|
|
644
648
|
};
|
|
645
649
|
/**
|
|
646
650
|
* Type definition for `AWS::RDS::DBCluster.Tag`.
|
|
@@ -293,6 +293,10 @@ export type RDSDBInstanceProperties = {
|
|
|
293
293
|
This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
|
|
294
294
|
*/
|
|
295
295
|
DBSubnetGroupName?: string;
|
|
296
|
+
/**
|
|
297
|
+
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB``. The Oracle SID is also the name of your CDB.
|
|
298
|
+
*/
|
|
299
|
+
DBSystemId?: string;
|
|
296
300
|
/**
|
|
297
301
|
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
|
298
302
|
*/
|
|
@@ -799,10 +803,6 @@ export type RDSDBInstanceAttributes = {
|
|
|
799
803
|
ValidTill: string;
|
|
800
804
|
};
|
|
801
805
|
DBInstanceArn: string;
|
|
802
|
-
/**
|
|
803
|
-
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB``. The Oracle SID is also the name of your CDB.
|
|
804
|
-
*/
|
|
805
|
-
DBSystemId: string;
|
|
806
806
|
DbiResourceId: string;
|
|
807
807
|
/**
|
|
808
808
|
* The connection endpoint for the DB instance.
|