@awboost/cfn-resource-types 0.1.367 → 0.1.368

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.
@@ -304,6 +304,13 @@ export type LogConfiguration = {
304
304
  * Configures the service that provides logs.
305
305
  */
306
306
  LogDestination?: LogDestination;
307
+ /**
308
+ * If log destination is CLOUDWATCH, logs are sent to the specified log group in Amazon CloudWatch.
309
+ * @minLength `1`
310
+ * @maxLength `512`
311
+ * @pattern `[a-zA-Z0-9:/\-\*]+`
312
+ */
313
+ LogGroupArn?: string;
307
314
  /**
308
315
  * The name of the S3 bucket to pull logs from if S3 is the LogDestination
309
316
  * @minLength `1`
@@ -10,9 +10,9 @@ export type GameLiftFleetProperties = {
10
10
  */
11
11
  AnywhereConfiguration?: AnywhereConfiguration;
12
12
  /**
13
- * Determines whether to apply fleet or location capacities on fleet creation.
13
+ * Determines when and how to apply fleet or location capacities. If you choose ON_CREATE_AND_UPDATE_WITH_AUTOSCALING, MinSize and MaxSize will still be applied on creation and on updates, but DesiredEC2Instances will only be applied once on fleet creation and will be ignored during updates to prevent conflicts with auto-scaling.
14
14
  */
15
- ApplyCapacity?: "ON_UPDATE" | "ON_CREATE_AND_UPDATE";
15
+ ApplyCapacity?: "ON_UPDATE" | "ON_CREATE_AND_UPDATE" | "ON_CREATE_AND_UPDATE_WITH_AUTOSCALING";
16
16
  /**
17
17
  * A unique identifier for a build to be deployed on the new fleet. If you are deploying the fleet with a custom game build, you must specify this property. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet is created.
18
18
  * @pattern `^build-\S+|^arn:.*:build/build-\S+`
@@ -1,20 +1,63 @@
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
- * Resource Type definition for AWS::Neptune::DBInstance
4
+ * The AWS::Neptune::DBInstance resource creates an Amazon Neptune DB instance.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html}
6
6
  */
7
7
  export type NeptuneDBInstanceProperties = {
8
+ /**
9
+ * Indicates that major version upgrades are allowed. Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible. This parameter must be set to true when specifying a value for the EngineVersion parameter that is a different major version than the DB instance's current version.
10
+ */
8
11
  AllowMajorVersionUpgrade?: boolean;
12
+ /**
13
+ * Indicates that minor version patches are applied automatically.
14
+
15
+ When updating this property, some interruptions may occur.
16
+ */
9
17
  AutoMinorVersionUpgrade?: boolean;
18
+ /**
19
+ * Specifies the name of the Availability Zone the DB instance is located in.
20
+ */
10
21
  AvailabilityZone?: string;
22
+ /**
23
+ * If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
24
+ */
11
25
  DBClusterIdentifier?: string;
26
+ /**
27
+ * Contains the name of the compute and memory capacity class of the DB instance.
28
+
29
+ If you update this property, some interruptions may occur.
30
+ */
12
31
  DBInstanceClass: string;
32
+ /**
33
+ * Contains a user-supplied database identifier. This identifier is the unique key that identifies a DB instance.
34
+ */
13
35
  DBInstanceIdentifier?: string;
36
+ /**
37
+ * The name of an existing DB parameter group or a reference to an AWS::Neptune::DBParameterGroup resource created in the template. If any of the data members of the referenced parameter group are changed during an update, the DB instance might need to be restarted, which causes some interruption. If the parameter group contains static parameters, whether they were changed or not, an update triggers a reboot.
38
+ */
14
39
  DBParameterGroupName?: string;
40
+ /**
41
+ * This parameter is not supported.
42
+
43
+ `AWS::Neptune::DBInstance` does not support restoring from snapshots.
44
+
45
+ `AWS::Neptune::DBCluster` does support restoring from snapshots.
46
+
47
+
48
+ */
15
49
  DBSnapshotIdentifier?: string;
50
+ /**
51
+ * A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new virtual private cloud (VPC).
52
+ */
16
53
  DBSubnetGroupName?: string;
54
+ /**
55
+ * Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
56
+ */
17
57
  PreferredMaintenanceWindow?: string;
58
+ /**
59
+ * An arbitrary set of tags (key-value pairs) for this DB instance.
60
+ */
18
61
  Tags?: Tag[];
19
62
  };
20
63
  /**
@@ -22,20 +65,32 @@ export type NeptuneDBInstanceProperties = {
22
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#aws-resource-neptune-dbinstance-return-values}
23
66
  */
24
67
  export type NeptuneDBInstanceAttributes = {
68
+ /**
69
+ * The connection endpoint for the database. For example: `mystack-mydb-1apw1j4phylrk.cg034hpkmmjt.us-east-2.rds.amazonaws.com`.
70
+ */
25
71
  Endpoint: string;
26
- Id: string;
72
+ /**
73
+ * The port number on which the database accepts connections. For example: `8182`.
74
+ */
27
75
  Port: string;
28
76
  };
29
77
  /**
30
78
  * Type definition for `AWS::Neptune::DBInstance.Tag`.
79
+ * A key-value pair to associate with a resource.
31
80
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbinstance-tag.html}
32
81
  */
33
82
  export type Tag = {
83
+ /**
84
+ * 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 -.
85
+ */
34
86
  Key: string;
87
+ /**
88
+ * 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 -.
89
+ */
35
90
  Value: string;
36
91
  };
37
92
  /**
38
- * Resource Type definition for AWS::Neptune::DBInstance
93
+ * The AWS::Neptune::DBInstance resource creates an Amazon Neptune DB instance.
39
94
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html}
40
95
  */
41
96
  export declare class NeptuneDBInstance extends $Resource<"AWS::Neptune::DBInstance", NeptuneDBInstanceProperties, NeptuneDBInstanceAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::Neptune::DBInstance
3
+ * The AWS::Neptune::DBInstance resource creates an Amazon Neptune DB instance.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html}
5
5
  */
6
6
  export class NeptuneDBInstance extends $Resource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.367",
3
+ "version": "0.1.368",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },