@awboost/cfn-resource-types 0.1.182 → 0.1.183

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.
@@ -45,7 +45,10 @@ export type AppSyncApiAttributes = {
45
45
  /**
46
46
  * A map of DNS names for the AppSync API.
47
47
  */
48
- Dns: Record<string, string>;
48
+ Dns: {
49
+ Http: string;
50
+ Realtime: string;
51
+ };
49
52
  };
50
53
  /**
51
54
  * Type definition for `AWS::AppSync::Api.AuthenticationType`.
@@ -97,12 +100,6 @@ export type CognitoConfig = {
97
100
  AwsRegion: string;
98
101
  UserPoolId: string;
99
102
  };
100
- /**
101
- * Type definition for `AWS::AppSync::Api.DnsMap`.
102
- * A map of DNS names for the AppSync API.
103
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html}
104
- */
105
- export type DnsMap = Record<string, string>;
106
103
  /**
107
104
  * Type definition for `AWS::AppSync::Api.EventConfig`.
108
105
  * The configuration for an Event Api
@@ -57,6 +57,10 @@ export type DataSyncTaskProperties = {
57
57
  * @maxLength `50`
58
58
  */
59
59
  Tags?: Tag[];
60
+ /**
61
+ * Specifies the task mode for the task.
62
+ */
63
+ TaskMode?: "BASIC" | "ENHANCED";
60
64
  /**
61
65
  * Specifies how you want to configure a task report, which provides detailed information about for your Datasync transfer.
62
66
  */
@@ -61,6 +61,7 @@ export type RDSDBClusterProperties = {
61
61
  * @min `1`
62
62
  */
63
63
  BackupRetentionPeriod?: number;
64
+ ClusterScalabilityType?: string;
64
65
  /**
65
66
  * 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.
66
67
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
@@ -0,0 +1,84 @@
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
+ * The AWS::RDS::DBShardGroup resource creates an Amazon Aurora Limitless DB Shard Group.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html}
6
+ */
7
+ export type RDSDBShardGroupProperties = {
8
+ /**
9
+ * Specifies whether to create standby instances for the DB shard group.
10
+ * @min `0`
11
+ */
12
+ ComputeRedundancy?: number;
13
+ /**
14
+ * The name of the primary DB cluster for the DB shard group.
15
+ * @minLength `1`
16
+ * @maxLength `63`
17
+ */
18
+ DBClusterIdentifier: string;
19
+ /**
20
+ * The name of the DB shard group.
21
+ * @minLength `1`
22
+ * @maxLength `63`
23
+ */
24
+ DBShardGroupIdentifier?: string;
25
+ /**
26
+ * The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
27
+ */
28
+ MaxACU: number;
29
+ /**
30
+ * The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
31
+ */
32
+ MinACU?: number;
33
+ /**
34
+ * Indicates whether the DB shard group is publicly accessible.
35
+ */
36
+ PubliclyAccessible?: boolean;
37
+ /**
38
+ * An array of key-value pairs to apply to this resource.
39
+ * @maxLength `50`
40
+ */
41
+ Tags?: Tag[];
42
+ };
43
+ /**
44
+ * Attribute type definition for `AWS::RDS::DBShardGroup`.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#aws-resource-rds-dbshardgroup-return-values}
46
+ */
47
+ export type RDSDBShardGroupAttributes = {
48
+ /**
49
+ * The Amazon Web Services Region-unique, immutable identifier for the DB shard group.
50
+ */
51
+ DBShardGroupResourceId: string;
52
+ /**
53
+ * The connection endpoint for the DB shard group.
54
+ */
55
+ Endpoint: string;
56
+ };
57
+ /**
58
+ * Type definition for `AWS::RDS::DBShardGroup.Tag`.
59
+ * A key-value pair to associate with a resource.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbshardgroup-tag.html}
61
+ */
62
+ export type Tag = {
63
+ /**
64
+ * 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 -.
65
+ * @minLength `1`
66
+ * @maxLength `128`
67
+ */
68
+ Key: string;
69
+ /**
70
+ * 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 -.
71
+ * @minLength `0`
72
+ * @maxLength `256`
73
+ */
74
+ Value?: string;
75
+ };
76
+ /**
77
+ * The AWS::RDS::DBShardGroup resource creates an Amazon Aurora Limitless DB Shard Group.
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html}
79
+ */
80
+ export declare class RDSDBShardGroup extends $Resource<"AWS::RDS::DBShardGroup", RDSDBShardGroupProperties, RDSDBShardGroupAttributes> {
81
+ static readonly Type = "AWS::RDS::DBShardGroup";
82
+ constructor(logicalId: string, properties: RDSDBShardGroupProperties, options?: $ResourceOptions);
83
+ }
84
+ //# sourceMappingURL=AWS-RDS-DBShardGroup.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::RDS::DBShardGroup resource creates an Amazon Aurora Limitless DB Shard Group.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html}
5
+ */
6
+ export class RDSDBShardGroup extends $Resource {
7
+ static Type = "AWS::RDS::DBShardGroup";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, RDSDBShardGroup.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-RDS-DBShardGroup.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.182",
3
+ "version": "0.1.183",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },