@awboost/cfn-resource-types 0.1.249 → 0.1.251
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-APS-Scraper.d.ts +19 -0
- package/lib/AWS-Batch-JobDefinition.d.ts +12 -0
- package/lib/AWS-CloudFormation-PublicTypeVersion.d.ts +2 -2
- package/lib/AWS-CloudFormation-Publisher.d.ts +2 -2
- package/lib/AWS-CloudFormation-TypeActivation.d.ts +2 -2
- package/lib/AWS-ECS-Service.d.ts +2 -3
- package/lib/AWS-IoTFleetWise-Vehicle.d.ts +54 -0
- package/lib/AWS-IoTSiteWise-Gateway.d.ts +9 -12
- package/lib/AWS-KinesisFirehose-DeliveryStream.d.ts +13 -0
- package/lib/AWS-RDS-DBCluster.d.ts +1 -1
- package/lib/AWS-RDS-DBInstance.d.ts +3 -3
- package/package.json +1 -1
package/lib/AWS-APS-Scraper.d.ts
CHANGED
|
@@ -16,6 +16,10 @@ export type APSScraperProperties = {
|
|
|
16
16
|
* Scraper metrics destination
|
|
17
17
|
*/
|
|
18
18
|
Destination: Destination;
|
|
19
|
+
/**
|
|
20
|
+
* Role configuration
|
|
21
|
+
*/
|
|
22
|
+
RoleConfiguration?: RoleConfiguration;
|
|
19
23
|
/**
|
|
20
24
|
* Scraper configuration
|
|
21
25
|
*/
|
|
@@ -71,6 +75,21 @@ export type Destination = {
|
|
|
71
75
|
WorkspaceArn: string;
|
|
72
76
|
};
|
|
73
77
|
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::APS::Scraper.RoleConfiguration`.
|
|
80
|
+
* Role configuration
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-roleconfiguration.html}
|
|
82
|
+
*/
|
|
83
|
+
export type RoleConfiguration = {
|
|
84
|
+
/**
|
|
85
|
+
* IAM Role in source account
|
|
86
|
+
*/
|
|
87
|
+
SourceRoleArn?: string;
|
|
88
|
+
/**
|
|
89
|
+
* IAM Role in the target account
|
|
90
|
+
*/
|
|
91
|
+
TargetRoleArn?: string;
|
|
92
|
+
};
|
|
74
93
|
/**
|
|
75
94
|
* Type definition for `AWS::APS::Scraper.ScrapeConfiguration`.
|
|
76
95
|
* Scraper configuration
|
|
@@ -157,6 +157,7 @@ export type EksContainerVolumeMount = {
|
|
|
157
157
|
MountPath?: string;
|
|
158
158
|
Name?: string;
|
|
159
159
|
ReadOnly?: boolean;
|
|
160
|
+
SubPath?: string;
|
|
160
161
|
};
|
|
161
162
|
/**
|
|
162
163
|
* Type definition for `AWS::Batch::JobDefinition.EksEmptyDir`.
|
|
@@ -178,7 +179,17 @@ export type EksHostPath = {
|
|
|
178
179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-eksmetadata.html}
|
|
179
180
|
*/
|
|
180
181
|
export type EksMetadata = {
|
|
182
|
+
Annotations?: Record<string, string>;
|
|
181
183
|
Labels?: Record<string, string>;
|
|
184
|
+
Namespace?: string;
|
|
185
|
+
};
|
|
186
|
+
/**
|
|
187
|
+
* Type definition for `AWS::Batch::JobDefinition.EksPersistentVolumeClaim`.
|
|
188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ekspersistentvolumeclaim.html}
|
|
189
|
+
*/
|
|
190
|
+
export type EksPersistentVolumeClaim = {
|
|
191
|
+
ClaimName: string;
|
|
192
|
+
ReadOnly?: boolean;
|
|
182
193
|
};
|
|
183
194
|
/**
|
|
184
195
|
* Type definition for `AWS::Batch::JobDefinition.EksPodProperties`.
|
|
@@ -218,6 +229,7 @@ export type EksVolume = {
|
|
|
218
229
|
EmptyDir?: EksEmptyDir;
|
|
219
230
|
HostPath?: EksHostPath;
|
|
220
231
|
Name: string;
|
|
232
|
+
PersistentVolumeClaim?: EksPersistentVolumeClaim;
|
|
221
233
|
Secret?: EksSecret;
|
|
222
234
|
};
|
|
223
235
|
/**
|
|
@@ -45,10 +45,10 @@ export type CloudFormationPublicTypeVersionAttributes = {
|
|
|
45
45
|
*/
|
|
46
46
|
PublicTypeArn: string;
|
|
47
47
|
/**
|
|
48
|
-
* The publisher id assigned by CloudFormation for publishing in this region.
|
|
48
|
+
* The reserved publisher id for this type, or the publisher id assigned by CloudFormation for publishing in this region.
|
|
49
49
|
* @minLength `1`
|
|
50
50
|
* @maxLength `40`
|
|
51
|
-
* @pattern `[0-9a-zA-Z-]{40}`
|
|
51
|
+
* @pattern `[0-9a-zA-Z-]{1,40}`
|
|
52
52
|
*/
|
|
53
53
|
PublisherId: string;
|
|
54
54
|
/**
|
|
@@ -26,10 +26,10 @@ export type CloudFormationPublisherAttributes = {
|
|
|
26
26
|
*/
|
|
27
27
|
IdentityProvider: "AWS_Marketplace" | "GitHub" | "Bitbucket";
|
|
28
28
|
/**
|
|
29
|
-
* The publisher id assigned by CloudFormation for publishing in this region.
|
|
29
|
+
* The reserved publisher id for this type, or the publisher id assigned by CloudFormation for publishing in this region.
|
|
30
30
|
* @minLength `1`
|
|
31
31
|
* @maxLength `40`
|
|
32
|
-
* @pattern `[0-9a-zA-Z-]{40}`
|
|
32
|
+
* @pattern `[0-9a-zA-Z-]{1,40}`
|
|
33
33
|
*/
|
|
34
34
|
PublisherId: string;
|
|
35
35
|
/**
|
|
@@ -31,10 +31,10 @@ export type CloudFormationTypeActivationProperties = {
|
|
|
31
31
|
*/
|
|
32
32
|
PublicTypeArn?: string;
|
|
33
33
|
/**
|
|
34
|
-
* The publisher id assigned by CloudFormation for publishing in this region.
|
|
34
|
+
* The reserved publisher id for this type, or the publisher id assigned by CloudFormation for publishing in this region.
|
|
35
35
|
* @minLength `1`
|
|
36
36
|
* @maxLength `40`
|
|
37
|
-
* @pattern `[0-9a-zA-Z-]{40}`
|
|
37
|
+
* @pattern `[0-9a-zA-Z-]{1,40}`
|
|
38
38
|
*/
|
|
39
39
|
PublisherId?: string;
|
|
40
40
|
/**
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -155,12 +155,12 @@ export type AwsVpcConfiguration = {
|
|
|
155
155
|
*/
|
|
156
156
|
AssignPublicIp?: "DISABLED" | "ENABLED";
|
|
157
157
|
/**
|
|
158
|
-
* The IDs of the security groups associated with the task or service. If you don't specify a security group, the default security group for the VPC is used. There's a limit of 5 security groups that can be specified
|
|
158
|
+
* The IDs of the security groups associated with the task or service. If you don't specify a security group, the default security group for the VPC is used. There's a limit of 5 security groups that can be specified.
|
|
159
159
|
All specified security groups must be from the same VPC.
|
|
160
160
|
*/
|
|
161
161
|
SecurityGroups?: string[];
|
|
162
162
|
/**
|
|
163
|
-
* The IDs of the subnets associated with the task or service. There's a limit of 16 subnets that can be specified
|
|
163
|
+
* The IDs of the subnets associated with the task or service. There's a limit of 16 subnets that can be specified.
|
|
164
164
|
All specified subnets must be from the same VPC.
|
|
165
165
|
*/
|
|
166
166
|
Subnets?: string[];
|
|
@@ -622,7 +622,6 @@ export type ServiceManagedEBSVolumeConfiguration = {
|
|
|
622
622
|
This parameter is only supported for the ``gp3`` volume type.
|
|
623
623
|
*/
|
|
624
624
|
Throughput?: number;
|
|
625
|
-
VolumeInitializationRate?: number;
|
|
626
625
|
/**
|
|
627
626
|
* The volume type. This parameter maps 1:1 with the ``VolumeType`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*. For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html) in the *Amazon EC2 User Guide*.
|
|
628
627
|
The following are the supported volume types.
|
|
@@ -15,6 +15,11 @@ export type IoTFleetWiseVehicleProperties = {
|
|
|
15
15
|
* @pattern `^[a-zA-Z\d\-_:]+$`
|
|
16
16
|
*/
|
|
17
17
|
Name: string;
|
|
18
|
+
/**
|
|
19
|
+
* @minLength `0`
|
|
20
|
+
* @maxLength `20`
|
|
21
|
+
*/
|
|
22
|
+
StateTemplates?: StateTemplateAssociation[];
|
|
18
23
|
/**
|
|
19
24
|
* @minLength `0`
|
|
20
25
|
* @maxLength `50`
|
|
@@ -35,6 +40,39 @@ export type IoTFleetWiseVehicleAttributes = {
|
|
|
35
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-attributesmap.html}
|
|
36
41
|
*/
|
|
37
42
|
export type attributesMap = Record<string, string>;
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::IoTFleetWise::Vehicle.OnChangeStateTemplateUpdateStrategy`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-onchangestatetemplateupdatestrategy.html}
|
|
46
|
+
*/
|
|
47
|
+
export type OnChangeStateTemplateUpdateStrategy = Record<string, any>;
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::IoTFleetWise::Vehicle.PeriodicStateTemplateUpdateStrategy`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-periodicstatetemplateupdatestrategy.html}
|
|
51
|
+
*/
|
|
52
|
+
export type PeriodicStateTemplateUpdateStrategy = {
|
|
53
|
+
StateTemplateUpdateRate: TimePeriod;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::IoTFleetWise::Vehicle.StateTemplateAssociation`.
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-statetemplateassociation.html}
|
|
58
|
+
*/
|
|
59
|
+
export type StateTemplateAssociation = {
|
|
60
|
+
/**
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
* @maxLength `100`
|
|
63
|
+
*/
|
|
64
|
+
Identifier: string;
|
|
65
|
+
StateTemplateUpdateStrategy: StateTemplateUpdateStrategy;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::IoTFleetWise::Vehicle.StateTemplateUpdateStrategy`.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-statetemplateupdatestrategy.html}
|
|
70
|
+
*/
|
|
71
|
+
export type StateTemplateUpdateStrategy = {
|
|
72
|
+
Periodic: PeriodicStateTemplateUpdateStrategy;
|
|
73
|
+
} | {
|
|
74
|
+
OnChange: OnChangeStateTemplateUpdateStrategy;
|
|
75
|
+
};
|
|
38
76
|
/**
|
|
39
77
|
* Type definition for `AWS::IoTFleetWise::Vehicle.Tag`.
|
|
40
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-tag.html}
|
|
@@ -51,6 +89,22 @@ export type Tag = {
|
|
|
51
89
|
*/
|
|
52
90
|
Value: string;
|
|
53
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* Type definition for `AWS::IoTFleetWise::Vehicle.TimePeriod`.
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-timeperiod.html}
|
|
95
|
+
*/
|
|
96
|
+
export type TimePeriod = {
|
|
97
|
+
Unit: TimeUnit;
|
|
98
|
+
/**
|
|
99
|
+
* @min `1`
|
|
100
|
+
*/
|
|
101
|
+
Value: number;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Type definition for `AWS::IoTFleetWise::Vehicle.TimeUnit`.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-timeunit.html}
|
|
106
|
+
*/
|
|
107
|
+
export type TimeUnit = "MILLISECOND" | "SECOND" | "MINUTE" | "HOUR";
|
|
54
108
|
/**
|
|
55
109
|
* Type definition for `AWS::IoTFleetWise::Vehicle.VehicleAssociationBehavior`.
|
|
56
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-vehicleassociationbehavior.html}
|
|
@@ -17,6 +17,10 @@ export type IoTSiteWiseGatewayProperties = {
|
|
|
17
17
|
* The gateway's platform. You can only specify one platform in a gateway.
|
|
18
18
|
*/
|
|
19
19
|
GatewayPlatform: GatewayPlatform;
|
|
20
|
+
/**
|
|
21
|
+
* The version of the gateway you want to create.
|
|
22
|
+
*/
|
|
23
|
+
GatewayVersion?: string;
|
|
20
24
|
/**
|
|
21
25
|
* A list of key-value pairs that contain metadata for the gateway.
|
|
22
26
|
*/
|
|
@@ -56,7 +60,7 @@ export type GatewayPlatform = {
|
|
|
56
60
|
/**
|
|
57
61
|
* A gateway that runs on AWS IoT Greengrass V1.
|
|
58
62
|
*/
|
|
59
|
-
Greengrass?:
|
|
63
|
+
Greengrass?: any;
|
|
60
64
|
/**
|
|
61
65
|
* A gateway that runs on AWS IoT Greengrass V2.
|
|
62
66
|
*/
|
|
@@ -66,23 +70,16 @@ export type GatewayPlatform = {
|
|
|
66
70
|
*/
|
|
67
71
|
SiemensIE?: SiemensIE;
|
|
68
72
|
};
|
|
69
|
-
/**
|
|
70
|
-
* Type definition for `AWS::IoTSiteWise::Gateway.Greengrass`.
|
|
71
|
-
* Contains the ARN of AWS IoT Greengrass Group V1 that the gateway runs on.
|
|
72
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-greengrass.html}
|
|
73
|
-
*/
|
|
74
|
-
export type Greengrass = {
|
|
75
|
-
/**
|
|
76
|
-
* The ARN of the Greengrass group.
|
|
77
|
-
*/
|
|
78
|
-
GroupArn: string;
|
|
79
|
-
};
|
|
80
73
|
/**
|
|
81
74
|
* Type definition for `AWS::IoTSiteWise::Gateway.GreengrassV2`.
|
|
82
75
|
* Contains the CoreDeviceThingName of AWS IoT Greengrass Group V2 that the gateway runs on.
|
|
83
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-greengrassv2.html}
|
|
84
77
|
*/
|
|
85
78
|
export type GreengrassV2 = {
|
|
79
|
+
/**
|
|
80
|
+
* The operating system of the core device in AWS IoT Greengrass V2.
|
|
81
|
+
*/
|
|
82
|
+
CoreDeviceOperatingSystem?: "LINUX_AARCH64" | "LINUX_AMD64" | "WINDOWS_AMD64";
|
|
86
83
|
/**
|
|
87
84
|
* The name of the CoreDevice in GreenGrass V2.
|
|
88
85
|
*/
|
|
@@ -16,6 +16,7 @@ export type KinesisFirehoseDeliveryStreamProperties = {
|
|
|
16
16
|
*/
|
|
17
17
|
DeliveryStreamName?: string;
|
|
18
18
|
DeliveryStreamType?: "DatabaseAsSource" | "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
|
|
19
|
+
DirectPutSourceConfiguration?: DirectPutSourceConfiguration;
|
|
19
20
|
ElasticsearchDestinationConfiguration?: ElasticsearchDestinationConfiguration;
|
|
20
21
|
ExtendedS3DestinationConfiguration?: ExtendedS3DestinationConfiguration;
|
|
21
22
|
HttpEndpointDestinationConfiguration?: HttpEndpointDestinationConfiguration;
|
|
@@ -344,6 +345,17 @@ export type DestinationTableConfiguration = {
|
|
|
344
345
|
S3ErrorOutputPrefix?: string;
|
|
345
346
|
UniqueKeys?: string[];
|
|
346
347
|
};
|
|
348
|
+
/**
|
|
349
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DirectPutSourceConfiguration`.
|
|
350
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-directputsourceconfiguration.html}
|
|
351
|
+
*/
|
|
352
|
+
export type DirectPutSourceConfiguration = {
|
|
353
|
+
/**
|
|
354
|
+
* @min `1`
|
|
355
|
+
* @max `100`
|
|
356
|
+
*/
|
|
357
|
+
ThroughputHintInMBs?: number;
|
|
358
|
+
};
|
|
347
359
|
/**
|
|
348
360
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DocumentIdOptions`.
|
|
349
361
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-documentidoptions.html}
|
|
@@ -555,6 +567,7 @@ export type HttpEndpointRequestConfiguration = {
|
|
|
555
567
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-icebergdestinationconfiguration.html}
|
|
556
568
|
*/
|
|
557
569
|
export type IcebergDestinationConfiguration = {
|
|
570
|
+
AppendOnly?: boolean;
|
|
558
571
|
BufferingHints?: BufferingHints;
|
|
559
572
|
CatalogConfiguration: CatalogConfiguration;
|
|
560
573
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
@@ -368,7 +368,7 @@ export type RDSDBClusterProperties = {
|
|
|
368
368
|
/**
|
|
369
369
|
* The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
370
370
|
Format: ``ddd:hh24:mi-ddd:hh24:mi``
|
|
371
|
-
The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see [
|
|
371
|
+
The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see [Maintaining an Amazon Aurora DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora) in the *Amazon Aurora User Guide.*
|
|
372
372
|
Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
|
373
373
|
Constraints: Minimum 30-minute window.
|
|
374
374
|
Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -267,7 +267,7 @@ export type RDSDBInstanceProperties = {
|
|
|
267
267
|
/**
|
|
268
268
|
* The name or Amazon Resource Name (ARN) of the DB snapshot that's used to restore the DB instance. If you're restoring from a shared manual DB snapshot, you must specify the ARN of the snapshot.
|
|
269
269
|
By specifying this property, you can create a DB instance from the specified DB snapshot. If the ``DBSnapshotIdentifier`` property is an empty string or the ``AWS::RDS::DBInstance`` declaration has no ``DBSnapshotIdentifier`` property, AWS CloudFormation creates a new database. If the property contains a value (other than an empty string), AWS CloudFormation creates a database from the specified snapshot. If a snapshot with the specified name doesn't exist, AWS CloudFormation can't create the database and it rolls back the stack.
|
|
270
|
-
Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties
|
|
270
|
+
Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties, and the point-in-time recovery properties ``RestoreTime`` and ``UseLatestRestorableTime``. For information about the properties that you can specify, see the [RestoreDBInstanceFromDBSnapshot](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_RestoreDBInstanceFromDBSnapshot.html) action in the *Amazon RDS API Reference*.
|
|
271
271
|
After you restore a DB instance with a ``DBSnapshotIdentifier`` property, you must specify the same ``DBSnapshotIdentifier`` property for any future updates to the DB instance. When you specify this property for an update, the DB instance is not restored from the DB snapshot again, and the data in the database is not changed. However, if you don't specify the ``DBSnapshotIdentifier`` property, an empty DB instance is created, and the original DB instance is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB instance is restored from the specified ``DBSnapshotIdentifier`` property, and the original DB instance is deleted.
|
|
272
272
|
If you specify the ``DBSnapshotIdentifier`` property to restore a DB instance (as opposed to specifying it for DB instance updates), then don't specify the following properties:
|
|
273
273
|
+ ``CharacterSetName``
|
|
@@ -650,7 +650,7 @@ export type RDSDBInstanceProperties = {
|
|
|
650
650
|
/**
|
|
651
651
|
* The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
652
652
|
Format: ``ddd:hh24:mi-ddd:hh24:mi``
|
|
653
|
-
The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see [
|
|
653
|
+
The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see [Maintaining a DB instance](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow) in the *Amazon RDS User Guide.*
|
|
654
654
|
This property applies when AWS CloudFormation initially creates the DB instance. If you use AWS CloudFormation to update the DB instance, those updates are applied immediately.
|
|
655
655
|
Constraints: Minimum 30-minute window.
|
|
656
656
|
*/
|
|
@@ -736,7 +736,7 @@ export type RDSDBInstanceProperties = {
|
|
|
736
736
|
*/
|
|
737
737
|
StorageEncrypted?: boolean;
|
|
738
738
|
/**
|
|
739
|
-
* Specifies the storage throughput value for the DB instance. This setting applies only to the ``gp3`` storage type.
|
|
739
|
+
* Specifies the storage throughput value, in mebibyte per second (MiBps), for the DB instance. This setting applies only to the ``gp3`` storage type.
|
|
740
740
|
This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
741
741
|
*/
|
|
742
742
|
StorageThroughput?: number;
|