@awboost/cfn-resource-types 0.1.216 → 0.1.217
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-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: {
|
|
@@ -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.
|