@propulsionworks/cloudformation 0.1.15 → 0.1.16
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/out/exports/resources.generated/aws-b2bi-partnership.d.ts +8 -0
- package/out/exports/resources.generated/aws-bedrock-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-bedrock-guardrail.d.ts +24 -0
- package/out/exports/resources.generated/aws-cassandra-table.d.ts +3 -0
- package/out/exports/resources.generated/aws-cloudformation-stackset.d.ts +2 -2
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +39 -7
- package/out/exports/resources.generated/aws-dynamodb-globaltable.d.ts +82 -46
- package/out/exports/resources.generated/aws-dynamodb-table.d.ts +6 -2
- package/out/exports/resources.generated/aws-ec2-trafficmirrorfilterrule.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-service.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +2 -3
- package/out/exports/resources.generated/aws-emrserverless-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-evs-environment.d.ts +1 -1
- package/out/exports/resources.generated/aws-fsx-s3accesspointattachment.d.ts +25 -3
- package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-imagebuilder-component.d.ts +1 -56
- package/out/exports/resources.generated/aws-imagebuilder-containerrecipe.d.ts +1 -85
- package/out/exports/resources.generated/aws-imagebuilder-workflow.d.ts +1 -57
- package/out/exports/resources.generated/aws-iot-logging.d.ts +2 -2
- package/out/exports/resources.generated/aws-kinesis-streamconsumer.d.ts +18 -5
- package/out/exports/resources.generated/aws-lex-bot.d.ts +1 -0
- package/out/exports/resources.generated/aws-neptune-dbinstance.d.ts +2 -0
- package/out/exports/resources.generated/aws-odb-cloudautonomousvmcluster.d.ts +285 -0
- package/out/exports/resources.generated/aws-odb-cloudexadatainfrastructure.d.ts +200 -0
- package/out/exports/resources.generated/aws-odb-cloudvmcluster.d.ts +233 -0
- package/out/exports/resources.generated/aws-odb-odbnetwork.d.ts +98 -0
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +2 -2
- package/out/exports/resources.generated/aws-qbusiness-dataaccessor.d.ts +54 -0
- package/out/exports/resources.generated/aws-qbusiness-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-qbusiness-permission.d.ts +23 -0
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +26 -2
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +5 -4
- package/out/exports/resources.generated/aws-redshiftserverless-snapshot.d.ts +109 -0
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +166 -0
- package/out/exports/resources.generated/aws-transfer-server.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::ODB::CloudVmCluster resource creates a Cloud VM Cluster
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html}
|
|
5
|
+
*/
|
|
6
|
+
export type ODBCloudVmCluster = ResourceDefinitionWithAttributes<"AWS::ODB::CloudVmCluster", ODBCloudVmClusterProps, ODBCloudVmClusterAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* The AWS::ODB::CloudVmCluster resource creates a Cloud VM Cluster
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html}
|
|
10
|
+
*/
|
|
11
|
+
export type ODBCloudVmClusterProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The unique identifier of the Exadata infrastructure that this VM cluster belongs to.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-cloudexadatainfrastructureid}
|
|
15
|
+
*/
|
|
16
|
+
CloudExadataInfrastructureId?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The name of the Grid Infrastructure (GI) cluster.
|
|
19
|
+
* @minLength 1
|
|
20
|
+
* @maxLength 11
|
|
21
|
+
* @pattern ^[a-zA-Z][a-zA-Z0-9-]*$
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-clustername}
|
|
23
|
+
*/
|
|
24
|
+
ClusterName?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* The number of CPU cores enabled on the VM cluster.
|
|
27
|
+
* @min 0
|
|
28
|
+
* @max 368
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-cpucorecount}
|
|
30
|
+
*/
|
|
31
|
+
CpuCoreCount?: number | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* Information about the data collection options enabled for a VM cluster.
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-datacollectionoptions}
|
|
35
|
+
*/
|
|
36
|
+
DataCollectionOptions?: DataCollectionOptions | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* The size of the data disk group, in terabytes (TB), that's allocated for the VM cluster.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-datastoragesizeintbs}
|
|
40
|
+
*/
|
|
41
|
+
DataStorageSizeInTBs?: number | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* The amount of local node storage, in gigabytes (GB), that's allocated for the VM cluster.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-dbnodestoragesizeingbs}
|
|
45
|
+
*/
|
|
46
|
+
DbNodeStorageSizeInGBs?: number | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* The list of database servers for the VM cluster.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-dbservers}
|
|
50
|
+
*/
|
|
51
|
+
DbServers?: string[] | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* The user-friendly name for the VM cluster.
|
|
54
|
+
* @minLength 1
|
|
55
|
+
* @maxLength 255
|
|
56
|
+
* @pattern ^[a-zA-Z_](?!.*--)[a-zA-Z0-9_-]*$
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-displayname}
|
|
58
|
+
*/
|
|
59
|
+
DisplayName?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* The software version of the Oracle Grid Infrastructure (GI) for the VM cluster.
|
|
62
|
+
* @minLength 1
|
|
63
|
+
* @maxLength 255
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-giversion}
|
|
65
|
+
*/
|
|
66
|
+
GiVersion?: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* The host name for the VM cluster.
|
|
69
|
+
* @minLength 1
|
|
70
|
+
* @maxLength 12
|
|
71
|
+
* @pattern ^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]$
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-hostname}
|
|
73
|
+
*/
|
|
74
|
+
Hostname?: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* Indicates whether database backups to local Exadata storage is enabled for the VM cluster.
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-islocalbackupenabled}
|
|
78
|
+
*/
|
|
79
|
+
IsLocalBackupEnabled?: boolean | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* Indicates whether the VM cluster is configured with a sparse disk group.
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-issparsediskgroupenabled}
|
|
83
|
+
*/
|
|
84
|
+
IsSparseDiskgroupEnabled?: boolean | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* The Oracle license model applied to the VM cluster.
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-licensemodel}
|
|
88
|
+
*/
|
|
89
|
+
LicenseModel?: "BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED" | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* The amount of memory, in gigabytes (GB), that's allocated for the VM cluster.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-memorysizeingbs}
|
|
93
|
+
*/
|
|
94
|
+
MemorySizeInGBs?: number | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* The unique identifier of the ODB network for the VM cluster.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-odbnetworkid}
|
|
98
|
+
*/
|
|
99
|
+
OdbNetworkId?: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* Property description not available.
|
|
102
|
+
* @min 1024
|
|
103
|
+
* @max 8999
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-scanlistenerporttcp}
|
|
105
|
+
*/
|
|
106
|
+
ScanListenerPortTcp?: number | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-sshpublickeys}
|
|
110
|
+
*/
|
|
111
|
+
SshPublicKeys?: string[] | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* The operating system version of the image chosen for the VM cluster.
|
|
114
|
+
* @minLength 1
|
|
115
|
+
* @maxLength 255
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-systemversion}
|
|
117
|
+
*/
|
|
118
|
+
SystemVersion?: string | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* Tags to assign to the Vm Cluster.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-tags}
|
|
122
|
+
*/
|
|
123
|
+
Tags?: Tag[] | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* The time zone of the VM cluster.
|
|
126
|
+
* @minLength 1
|
|
127
|
+
* @maxLength 255
|
|
128
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-timezone}
|
|
129
|
+
*/
|
|
130
|
+
TimeZone?: string | undefined;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#aws-resource-odb-cloudvmcluster-return-values}
|
|
134
|
+
*/
|
|
135
|
+
export type ODBCloudVmClusterAttribs = {
|
|
136
|
+
/**
|
|
137
|
+
* The Amazon Resource Name (ARN) of the VM cluster.
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-cloudvmclusterarn}
|
|
139
|
+
*/
|
|
140
|
+
CloudVmClusterArn: string;
|
|
141
|
+
/**
|
|
142
|
+
* The unique identifier of the VM cluster.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-cloudvmclusterid}
|
|
144
|
+
*/
|
|
145
|
+
CloudVmClusterId: string;
|
|
146
|
+
/**
|
|
147
|
+
* The OCI model compute model used when you create or clone an instance: ECPU or OCPU. An ECPU is an abstracted measure of compute resources. ECPUs are based on the number of cores elastically allocated from a pool of compute and storage servers. An OCPU is a legacy physical measure of compute resources. OCPUs are based on the physical core of a processor with hyper-threading enabled.
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-computemodel}
|
|
149
|
+
*/
|
|
150
|
+
ComputeModel: string;
|
|
151
|
+
/**
|
|
152
|
+
* The type of redundancy configured for the VM cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-diskredundancy}
|
|
154
|
+
*/
|
|
155
|
+
DiskRedundancy: string;
|
|
156
|
+
/**
|
|
157
|
+
* The domain of the VM cluster.
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-domain}
|
|
159
|
+
*/
|
|
160
|
+
Domain: string;
|
|
161
|
+
/**
|
|
162
|
+
* The port number configured for the listener on the VM cluster.
|
|
163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-listenerport}
|
|
164
|
+
*/
|
|
165
|
+
ListenerPort: number;
|
|
166
|
+
/**
|
|
167
|
+
* The number of nodes in the VM cluster.
|
|
168
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-nodecount}
|
|
169
|
+
*/
|
|
170
|
+
NodeCount: number;
|
|
171
|
+
/**
|
|
172
|
+
* The name of the OCI resource anchor for the VM cluster.
|
|
173
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-ociresourceanchorname}
|
|
174
|
+
*/
|
|
175
|
+
OciResourceAnchorName: string;
|
|
176
|
+
/**
|
|
177
|
+
* The HTTPS link to the VM cluster in OCI.
|
|
178
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-ociurl}
|
|
179
|
+
*/
|
|
180
|
+
OciUrl: string;
|
|
181
|
+
/**
|
|
182
|
+
* The OCID of the VM cluster.
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-ocid}
|
|
184
|
+
*/
|
|
185
|
+
Ocid: string;
|
|
186
|
+
/**
|
|
187
|
+
* The FQDN of the DNS record for the Single Client Access Name (SCAN) IP addresses that are associated with the VM cluster.
|
|
188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-scandnsname}
|
|
189
|
+
*/
|
|
190
|
+
ScanDnsName: string;
|
|
191
|
+
/**
|
|
192
|
+
* The OCID of the SCAN IP addresses that are associated with the VM cluster.
|
|
193
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-scanipids}
|
|
194
|
+
*/
|
|
195
|
+
ScanIpIds: string[];
|
|
196
|
+
/**
|
|
197
|
+
* The hardware model name of the Exadata infrastructure that's running the VM cluster.
|
|
198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-shape}
|
|
199
|
+
*/
|
|
200
|
+
Shape: string;
|
|
201
|
+
/**
|
|
202
|
+
* The amount of local node storage, in gigabytes (GB), that's allocated to the VM cluster.
|
|
203
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-storagesizeingbs}
|
|
204
|
+
*/
|
|
205
|
+
StorageSizeInGBs: number;
|
|
206
|
+
/**
|
|
207
|
+
* The virtual IP (VIP) addresses that are associated with the VM cluster. Oracle's Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the VM cluster to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
|
208
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#cfn-odb-cloudvmcluster-vipids}
|
|
209
|
+
*/
|
|
210
|
+
VipIds: string[];
|
|
211
|
+
};
|
|
212
|
+
/**
|
|
213
|
+
* Information about the data collection options enabled for a VM cluster.
|
|
214
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudvmcluster-datacollectionoptions.html}
|
|
215
|
+
*/
|
|
216
|
+
export type DataCollectionOptions = {
|
|
217
|
+
/**
|
|
218
|
+
* Indicates whether diagnostic collection is enabled for the VM cluster.
|
|
219
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudvmcluster-datacollectionoptions.html#cfn-odb-cloudvmcluster-datacollectionoptions-isdiagnosticseventsenabled}
|
|
220
|
+
*/
|
|
221
|
+
IsDiagnosticsEventsEnabled?: boolean | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* Indicates whether health monitoring is enabled for the VM cluster.
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudvmcluster-datacollectionoptions.html#cfn-odb-cloudvmcluster-datacollectionoptions-ishealthmonitoringenabled}
|
|
225
|
+
*/
|
|
226
|
+
IsHealthMonitoringEnabled?: boolean | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* Indicates whether incident logs are enabled for the cloud VM cluster.
|
|
229
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudvmcluster-datacollectionoptions.html#cfn-odb-cloudvmcluster-datacollectionoptions-isincidentlogsenabled}
|
|
230
|
+
*/
|
|
231
|
+
IsIncidentLogsEnabled?: boolean | undefined;
|
|
232
|
+
};
|
|
233
|
+
//# sourceMappingURL=aws-odb-cloudvmcluster.d.ts.map
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::ODB::OdbNetwork resource creates an ODB Network
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html}
|
|
5
|
+
*/
|
|
6
|
+
export type ODBOdbNetwork = ResourceDefinitionWithAttributes<"AWS::ODB::OdbNetwork", ODBOdbNetworkProps, ODBOdbNetworkAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* The AWS::ODB::OdbNetwork resource creates an ODB Network
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html}
|
|
10
|
+
*/
|
|
11
|
+
export type ODBOdbNetworkProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The AWS Availability Zone (AZ) where the ODB network is located.
|
|
14
|
+
* @minLength 1
|
|
15
|
+
* @maxLength 255
|
|
16
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-availabilityzone}
|
|
17
|
+
*/
|
|
18
|
+
AvailabilityZone?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* The AZ ID of the AZ where the ODB network is located.
|
|
21
|
+
* @minLength 1
|
|
22
|
+
* @maxLength 255
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-availabilityzoneid}
|
|
24
|
+
*/
|
|
25
|
+
AvailabilityZoneId?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* The CIDR range of the backup subnet in the ODB network.
|
|
28
|
+
* @minLength 1
|
|
29
|
+
* @maxLength 255
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-backupsubnetcidr}
|
|
31
|
+
*/
|
|
32
|
+
BackupSubnetCidr?: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* The CIDR range of the client subnet in the ODB network.
|
|
35
|
+
* @minLength 1
|
|
36
|
+
* @maxLength 255
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-clientsubnetcidr}
|
|
38
|
+
*/
|
|
39
|
+
ClientSubnetCidr?: string | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com.
|
|
42
|
+
* @minLength 1
|
|
43
|
+
* @maxLength 255
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-defaultdnsprefix}
|
|
45
|
+
*/
|
|
46
|
+
DefaultDnsPrefix?: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies whether to delete associated OCI networking resources along with the ODB network.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-deleteassociatedresources}
|
|
50
|
+
*/
|
|
51
|
+
DeleteAssociatedResources?: boolean | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* The user-friendly name of the ODB network.
|
|
54
|
+
* @minLength 1
|
|
55
|
+
* @maxLength 255
|
|
56
|
+
* @pattern ^[a-zA-Z_](?!.*--)[a-zA-Z0-9_-]*$
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-displayname}
|
|
58
|
+
*/
|
|
59
|
+
DisplayName?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* Tags to assign to the Odb Network.
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-tags}
|
|
63
|
+
*/
|
|
64
|
+
Tags?: Tag[] | undefined;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#aws-resource-odb-odbnetwork-return-values}
|
|
68
|
+
*/
|
|
69
|
+
export type ODBOdbNetworkAttribs = {
|
|
70
|
+
/**
|
|
71
|
+
* The unique identifier of the OCI network anchor for the ODB network.
|
|
72
|
+
* @minLength 1
|
|
73
|
+
* @maxLength 255
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-ocinetworkanchorid}
|
|
75
|
+
*/
|
|
76
|
+
OciNetworkAnchorId: string;
|
|
77
|
+
/**
|
|
78
|
+
* The name of the OCI resource anchor that's associated with the ODB network.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-ociresourceanchorname}
|
|
80
|
+
*/
|
|
81
|
+
OciResourceAnchorName: string;
|
|
82
|
+
/**
|
|
83
|
+
* The URL for the VCN that's associated with the ODB network.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-ocivcnurl}
|
|
85
|
+
*/
|
|
86
|
+
OciVcnUrl: string;
|
|
87
|
+
/**
|
|
88
|
+
* The Amazon Resource Name (ARN) of the ODB network.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-odbnetworkarn}
|
|
90
|
+
*/
|
|
91
|
+
OdbNetworkArn: string;
|
|
92
|
+
/**
|
|
93
|
+
* The unique identifier of the ODB network.
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#cfn-odb-odbnetwork-odbnetworkid}
|
|
95
|
+
*/
|
|
96
|
+
OdbNetworkId: string;
|
|
97
|
+
};
|
|
98
|
+
//# sourceMappingURL=aws-odb-odbnetwork.d.ts.map
|
|
@@ -4,7 +4,7 @@ import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
|
4
4
|
*
|
|
5
5
|
* - *Input data* : Input data for the workflow, stored in an S3 bucket or a AWS HealthOmics sequence store.
|
|
6
6
|
* - *Workflow definition files* : Define your workflow in one or more workflow definition files, written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements.
|
|
7
|
-
* - *Parameter template
|
|
7
|
+
* - (Optional) *Parameter template* - You can create a parameter template file that defines the run parameters, or AWS HealthOmics can generate the parameter template for you.
|
|
8
8
|
* - *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository.
|
|
9
9
|
* - (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow.
|
|
10
10
|
*
|
|
@@ -17,7 +17,7 @@ export type OmicsWorkflow = ResourceDefinitionWithAttributes<"AWS::Omics::Workfl
|
|
|
17
17
|
*
|
|
18
18
|
* - *Input data* : Input data for the workflow, stored in an S3 bucket or a AWS HealthOmics sequence store.
|
|
19
19
|
* - *Workflow definition files* : Define your workflow in one or more workflow definition files, written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements.
|
|
20
|
-
* - *Parameter template
|
|
20
|
+
* - (Optional) *Parameter template* - You can create a parameter template file that defines the run parameters, or AWS HealthOmics can generate the parameter template for you.
|
|
21
21
|
* - *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository.
|
|
22
22
|
* - (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow.
|
|
23
23
|
*
|
|
@@ -22,6 +22,11 @@ export type QBusinessDataAccessorProps = {
|
|
|
22
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-applicationid}
|
|
23
23
|
*/
|
|
24
24
|
ApplicationId: string;
|
|
25
|
+
/**
|
|
26
|
+
* The authentication configuration details for the data accessor. This specifies how the ISV authenticates when accessing data through this data accessor.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-authenticationdetail}
|
|
28
|
+
*/
|
|
29
|
+
AuthenticationDetail?: DataAccessorAuthenticationDetail | undefined;
|
|
25
30
|
/**
|
|
26
31
|
* The friendly name of the data accessor.
|
|
27
32
|
* @minLength 1
|
|
@@ -169,6 +174,55 @@ export type AttributeFilter = {
|
|
|
169
174
|
*/
|
|
170
175
|
OrAllFilters?: AttributeFilter[] | undefined;
|
|
171
176
|
};
|
|
177
|
+
/**
|
|
178
|
+
* A union type that contains the specific authentication configuration based on the authentication type selected.
|
|
179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessorauthenticationconfiguration.html}
|
|
180
|
+
*/
|
|
181
|
+
export type DataAccessorAuthenticationConfiguration = {
|
|
182
|
+
IdcTrustedTokenIssuerConfiguration: DataAccessorIdcTrustedTokenIssuerConfiguration;
|
|
183
|
+
};
|
|
184
|
+
/**
|
|
185
|
+
* Contains the authentication configuration details for a data accessor. This structure defines how the ISV authenticates when accessing data through the data accessor.
|
|
186
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessorauthenticationdetail.html}
|
|
187
|
+
*/
|
|
188
|
+
export type DataAccessorAuthenticationDetail = {
|
|
189
|
+
/**
|
|
190
|
+
* The specific authentication configuration based on the authentication type.
|
|
191
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessorauthenticationdetail.html#cfn-qbusiness-dataaccessor-dataaccessorauthenticationdetail-authenticationconfiguration}
|
|
192
|
+
*/
|
|
193
|
+
AuthenticationConfiguration?: DataAccessorAuthenticationConfiguration | undefined;
|
|
194
|
+
/**
|
|
195
|
+
* The type of authentication to use for the data accessor. This determines how the ISV authenticates when accessing data. You can use one of two authentication types:
|
|
196
|
+
*
|
|
197
|
+
* - `AWS_IAM_IDC_TTI` - Authentication using IAM Identity Center Trusted Token Issuer (TTI). This authentication type allows the ISV to use a trusted token issuer to generate tokens for accessing the data.
|
|
198
|
+
* - `AWS_IAM_IDC_AUTH_CODE` - Authentication using IAM Identity Center authorization code flow. This authentication type uses the standard OAuth 2.0 authorization code flow for authentication.
|
|
199
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessorauthenticationdetail.html#cfn-qbusiness-dataaccessor-dataaccessorauthenticationdetail-authenticationtype}
|
|
200
|
+
*/
|
|
201
|
+
AuthenticationType: DataAccessorAuthenticationType;
|
|
202
|
+
/**
|
|
203
|
+
* A list of external identifiers associated with this authentication configuration. These are used to correlate the data accessor with external systems.
|
|
204
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessorauthenticationdetail.html#cfn-qbusiness-dataaccessor-dataaccessorauthenticationdetail-externalids}
|
|
205
|
+
*/
|
|
206
|
+
ExternalIds?: string[] | undefined;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessorauthenticationtype.html}
|
|
210
|
+
*/
|
|
211
|
+
export type DataAccessorAuthenticationType = "AWS_IAM_IDC_TTI" | "AWS_IAM_IDC_AUTH_CODE";
|
|
212
|
+
/**
|
|
213
|
+
* Configuration details for IAM Identity Center Trusted Token Issuer (TTI) authentication.
|
|
214
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessoridctrustedtokenissuerconfiguration.html}
|
|
215
|
+
*/
|
|
216
|
+
export type DataAccessorIdcTrustedTokenIssuerConfiguration = {
|
|
217
|
+
/**
|
|
218
|
+
* The Amazon Resource Name (ARN) of the IAM Identity Center Trusted Token Issuer that will be used for authentication.
|
|
219
|
+
* @minLength 0
|
|
220
|
+
* @maxLength 1284
|
|
221
|
+
* @pattern ^arn:aws:sso::[0-9]{12}:trustedTokenIssuer/(sso)?ins-[a-zA-Z0-9-.]{16}/tti-[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
222
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-dataaccessoridctrustedtokenissuerconfiguration.html#cfn-qbusiness-dataaccessor-dataaccessoridctrustedtokenissuerconfiguration-idctrustedtokenissuerarn}
|
|
223
|
+
*/
|
|
224
|
+
IdcTrustedTokenIssuerArn: string;
|
|
225
|
+
};
|
|
172
226
|
/**
|
|
173
227
|
* A document attribute or metadata field.
|
|
174
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattribute.html}
|
|
@@ -321,7 +321,7 @@ export type HookConfiguration = {
|
|
|
321
321
|
*/
|
|
322
322
|
InvocationCondition?: DocumentAttributeCondition | undefined;
|
|
323
323
|
/**
|
|
324
|
-
* The Amazon Resource Name (ARN) of the Lambda function
|
|
324
|
+
* The Amazon Resource Name (ARN) of the Lambda function during ingestion. For more information, see [Using Lambda functions for Amazon Q Business document enrichment](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html) .
|
|
325
325
|
* @minLength 1
|
|
326
326
|
* @maxLength 2048
|
|
327
327
|
* @pattern ^arn:aws[a-zA-Z-]*:lambda:[a-z-]*-[0-9]:[0-9]{12}:function:[a-zA-Z0-9-_]+(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?(:[a-zA-Z0-9-_]+)?$
|
|
@@ -22,6 +22,10 @@ export type QBusinessPermissionProps = {
|
|
|
22
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html#cfn-qbusiness-permission-applicationid}
|
|
23
23
|
*/
|
|
24
24
|
ApplicationId: string;
|
|
25
|
+
/**
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html#cfn-qbusiness-permission-conditions}
|
|
27
|
+
*/
|
|
28
|
+
Conditions?: Condition[] | undefined;
|
|
25
29
|
/**
|
|
26
30
|
* Provides user and group information used for filtering documents to use for generating Amazon Q Business conversation responses.
|
|
27
31
|
* @minLength 1
|
|
@@ -39,4 +43,23 @@ export type QBusinessPermissionProps = {
|
|
|
39
43
|
*/
|
|
40
44
|
StatementId: string;
|
|
41
45
|
};
|
|
46
|
+
/**
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-permission-condition.html}
|
|
48
|
+
*/
|
|
49
|
+
export type Condition = {
|
|
50
|
+
/**
|
|
51
|
+
* @pattern ^aws:PrincipalTag/qbusiness-dataaccessor:[a-zA-Z]+
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-permission-condition.html#cfn-qbusiness-permission-condition-conditionkey}
|
|
53
|
+
*/
|
|
54
|
+
ConditionKey: string;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-permission-condition.html#cfn-qbusiness-permission-condition-conditionoperator}
|
|
57
|
+
*/
|
|
58
|
+
ConditionOperator: "StringEquals";
|
|
59
|
+
/**
|
|
60
|
+
* @pattern ^[a-zA-Z0-9][a-zA-Z0-9_-]*$
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-permission-condition.html#cfn-qbusiness-permission-condition-conditionvalues}
|
|
62
|
+
*/
|
|
63
|
+
ConditionValues: string[];
|
|
64
|
+
};
|
|
42
65
|
//# sourceMappingURL=aws-qbusiness-permission.d.ts.map
|
|
@@ -92,15 +92,39 @@ export type Capabilities = {
|
|
|
92
92
|
*/
|
|
93
93
|
CreateSharedFolders?: CapabilityState | undefined;
|
|
94
94
|
/**
|
|
95
|
-
* The ability to export to CSV files.
|
|
95
|
+
* The ability to export to CSV files from the UI.
|
|
96
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttocsv}
|
|
97
97
|
*/
|
|
98
98
|
ExportToCsv?: CapabilityState | undefined;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttocsvinscheduledreports}
|
|
101
|
+
*/
|
|
102
|
+
ExportToCsvInScheduledReports?: CapabilityState | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* The ability to export to Excel files from the UI.
|
|
101
105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttoexcel}
|
|
102
106
|
*/
|
|
103
107
|
ExportToExcel?: CapabilityState | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttoexcelinscheduledreports}
|
|
110
|
+
*/
|
|
111
|
+
ExportToExcelInScheduledReports?: CapabilityState | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttopdf}
|
|
114
|
+
*/
|
|
115
|
+
ExportToPdf?: CapabilityState | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttopdfinscheduledreports}
|
|
118
|
+
*/
|
|
119
|
+
ExportToPdfInScheduledReports?: CapabilityState | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-includecontentinscheduledreportsemail}
|
|
122
|
+
*/
|
|
123
|
+
IncludeContentInScheduledReportsEmail?: CapabilityState | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-printreports}
|
|
126
|
+
*/
|
|
127
|
+
PrintReports?: CapabilityState | undefined;
|
|
104
128
|
/**
|
|
105
129
|
* The ability to rename shared folders.
|
|
106
130
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-renamesharedfolders}
|
|
@@ -3852,7 +3852,7 @@ export type ExportHiddenFieldsOption = {
|
|
|
3852
3852
|
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
3853
3853
|
};
|
|
3854
3854
|
/**
|
|
3855
|
-
*
|
|
3855
|
+
* Export to .csv option.
|
|
3856
3856
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-exporttocsvoption.html}
|
|
3857
3857
|
*/
|
|
3858
3858
|
export type ExportToCSVOption = {
|
|
@@ -222,6 +222,10 @@ export type RDSDBInstanceProps = {
|
|
|
222
222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-backupretentionperiod}
|
|
223
223
|
*/
|
|
224
224
|
BackupRetentionPeriod?: number | undefined;
|
|
225
|
+
/**
|
|
226
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-backuptarget}
|
|
227
|
+
*/
|
|
228
|
+
BackupTarget?: string | undefined;
|
|
225
229
|
/**
|
|
226
230
|
* The identifier of the CA certificate for this DB instance.
|
|
227
231
|
*
|
|
@@ -891,10 +895,7 @@ export type RDSDBInstanceProps = {
|
|
|
891
895
|
/**
|
|
892
896
|
* Specifies whether the DB instance is a Multi-AZ deployment. You can't set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ deployment.
|
|
893
897
|
*
|
|
894
|
-
* This setting doesn't apply to the
|
|
895
|
-
*
|
|
896
|
-
* - Amazon Aurora (DB instance Availability Zones (AZs) are managed by the DB cluster.)
|
|
897
|
-
* - RDS Custom
|
|
898
|
+
* This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.
|
|
898
899
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-multiaz}
|
|
899
900
|
*/
|
|
900
901
|
MultiAZ?: boolean | undefined;
|