@awboost/cfntypes 0.100.226 → 0.100.227

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.
@@ -22426,6 +22426,12 @@ export type BedrockGuardrailContentFilterConfig = {
22426
22426
  */
22427
22427
  Type: BedrockGuardrailContentFilterType;
22428
22428
  };
22429
+ /**
22430
+ * Type definition for `AWS::Bedrock::Guardrail.ContentFiltersTierName`.
22431
+ * Tier name for tier configuration in content filters policy
22432
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilterstiername.html}
22433
+ */
22434
+ export type BedrockGuardrailContentFiltersTierName = "CLASSIC" | "STANDARD";
22429
22435
  /**
22430
22436
  * Type definition for `AWS::Bedrock::Guardrail.ContentFilterType`.
22431
22437
  * Type of filter in content policy
@@ -22438,6 +22444,15 @@ export type BedrockGuardrailContentFilterType = "SEXUAL" | "VIOLENCE" | "HATE" |
22438
22444
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentpolicyconfig.html}
22439
22445
  */
22440
22446
  export type BedrockGuardrailContentPolicyConfig = {
22447
+ /**
22448
+ * Guardrail tier config for content policy
22449
+ */
22450
+ ContentFiltersTierConfig?: {
22451
+ /**
22452
+ * Tier name for tier configuration in content filters policy
22453
+ */
22454
+ TierName: BedrockGuardrailContentFiltersTierName;
22455
+ };
22441
22456
  /**
22442
22457
  * List of content filter configs in content policy.
22443
22458
  * @minLength `1`
@@ -22701,7 +22716,22 @@ export type BedrockGuardrailTopicPolicyConfig = {
22701
22716
  * @minLength `1`
22702
22717
  */
22703
22718
  TopicsConfig: BedrockGuardrailTopicConfig[];
22719
+ /**
22720
+ * Guardrail tier config for topic policy
22721
+ */
22722
+ TopicsTierConfig?: {
22723
+ /**
22724
+ * Tier name for tier configuration in topic policy
22725
+ */
22726
+ TierName: BedrockGuardrailTopicsTierName;
22727
+ };
22704
22728
  };
22729
+ /**
22730
+ * Type definition for `AWS::Bedrock::Guardrail.TopicsTierName`.
22731
+ * Tier name for tier configuration in topic policy
22732
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topicstiername.html}
22733
+ */
22734
+ export type BedrockGuardrailTopicsTierName = "CLASSIC" | "STANDARD";
22705
22735
  /**
22706
22736
  * Type definition for `AWS::Bedrock::Guardrail.TopicType`.
22707
22737
  * Type of topic in a policy
@@ -59725,14 +59755,30 @@ export type EC2TrafficMirrorSessionTag = {
59725
59755
  Value: string;
59726
59756
  };
59727
59757
  /**
59728
- * Resource Type definition for AWS::EC2::TrafficMirrorTarget
59758
+ * Resource type definition for `AWS::EC2::TrafficMirrorTarget`.
59759
+ * The description of the Traffic Mirror target.
59729
59760
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.html}
59730
59761
  */
59731
59762
  export type EC2TrafficMirrorTargetProps = {
59763
+ /**
59764
+ * The description of the Traffic Mirror target.
59765
+ */
59732
59766
  Description?: string;
59767
+ /**
59768
+ * The ID of the Gateway Load Balancer endpoint.
59769
+ */
59733
59770
  GatewayLoadBalancerEndpointId?: string;
59771
+ /**
59772
+ * The network interface ID that is associated with the target.
59773
+ */
59734
59774
  NetworkInterfaceId?: string;
59775
+ /**
59776
+ * The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.
59777
+ */
59735
59778
  NetworkLoadBalancerArn?: string;
59779
+ /**
59780
+ * The tags to assign to the Traffic Mirror target.
59781
+ */
59736
59782
  Tags?: EC2TrafficMirrorTargetTag[];
59737
59783
  };
59738
59784
  /**
@@ -61439,6 +61485,9 @@ export type EC2VPCEndpointProps = {
61439
61485
  * The Amazon Resource Name (ARN) of the service network.
61440
61486
  */
61441
61487
  ServiceNetworkArn?: string;
61488
+ /**
61489
+ * Describes a Region.
61490
+ */
61442
61491
  ServiceRegion?: string;
61443
61492
  /**
61444
61493
  * The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
@@ -63792,9 +63841,6 @@ export type ECSTaskDefinitionProps = {
63792
63841
  To use revision numbers when you update a task definition, specify this property. If you don't specify a value, CFNlong generates a new task definition each time that you update it.
63793
63842
  */
63794
63843
  Family?: string;
63795
- /**
63796
- * The Elastic Inference accelerators to use for the containers in the task.
63797
- */
63798
63844
  InferenceAccelerators?: ECSTaskDefinitionInferenceAccelerator[];
63799
63845
  /**
63800
63846
  * The IPC resource namespace to use for the containers in the task. The valid values are ``host``, ``task``, or ``none``. If ``host`` is specified, then all containers within the tasks that specified the ``host`` IPC mode on the same container instance share the same IPC resources with the host Amazon EC2 instance. If ``task`` is specified, all containers within the specified task share the same IPC resources. If ``none`` is specified, then IPC resources within the containers of a task are private and not shared with other containers in a task or on the container instance. If no value is specified, then the IPC resource namespace sharing depends on the Docker daemon setting on the container instance.
@@ -64424,17 +64470,10 @@ export type ECSTaskDefinitionHostVolumeProperties = {
64424
64470
  };
64425
64471
  /**
64426
64472
  * Type definition for `AWS::ECS::TaskDefinition.InferenceAccelerator`.
64427
- * Details on an Elastic Inference accelerator. For more information, see [Working with Amazon Elastic Inference on Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html) in the *Amazon Elastic Container Service Developer Guide*.
64428
64473
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-inferenceaccelerator.html}
64429
64474
  */
64430
64475
  export type ECSTaskDefinitionInferenceAccelerator = {
64431
- /**
64432
- * The Elastic Inference accelerator device name. The ``deviceName`` must also be referenced in a container definition as a [ResourceRequirement](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ResourceRequirement.html).
64433
- */
64434
64476
  DeviceName?: string;
64435
- /**
64436
- * The Elastic Inference accelerator type to use.
64437
- */
64438
64477
  DeviceType?: string;
64439
64478
  };
64440
64479
  /**
@@ -64540,7 +64579,7 @@ export type ECSTaskDefinitionLogConfiguration = {
64540
64579
  The options you can specify depend on the log driver. Some of the options you can specify when you use the ``awslogs`` log driver to route logs to Amazon CloudWatch include the following:
64541
64580
  + awslogs-create-group Required: No Specify whether you want the log group to be created automatically. If this option isn't specified, it defaults to false. Your IAM policy must include the logs:CreateLogGroup permission before you attempt to use awslogs-create-group. + awslogs-region Required: Yes Specify the Region that the awslogs log driver is to send your Docker logs to. You can choose to send all of your logs from clusters in different Regions to a single region in CloudWatch Logs. This is so that they're all visible in one location. Otherwise, you can separate them by Region for more granularity. Make sure that the specified log group exists in the Region that you specify with this option. + awslogs-group Required: Yes Make sure to specify a log group that the awslogs log driver sends its log streams to. + awslogs-stream-prefix Required: Yes, when using Fargate.Optional when using EC2. Use the awslogs-stream-prefix option to associate a log stream with the specified prefix, the container name, and the ID of the Amazon ECS task that the container belongs to. If you specify a prefix with this option, then the log stream takes the format prefix-name/container-name/ecs-task-id. If you don't specify a prefix with this option, then the log stream is named after the container ID that's assigned by the Docker daemon on the container instance. Because it's difficult to trace logs back to the container that sent them with just the Docker container ID (which is only available on the container instance), we recommend that you specify a prefix with this option. For Amazon ECS services, you can use the service name as the prefix. Doing so, you can trace log streams to the service that the container belongs to, the name of the container that sent them, and the ID of the task that the container belongs to. You must specify a stream-prefix for your logs to have your logs appear in the Log pane when using the Amazon ECS console. + awslogs-datetime-format Required: No This option defines a multiline start pattern in Python strftime format. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. One example of a use case for using this format is for parsing output such as a stack dump, which might otherwise be logged in multiple entries. The correct pattern allows it to be captured in a single entry. For more information, see awslogs-datetime-format. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance. + awslogs-multiline-pattern Required: No This option defines a multiline start pattern that uses a regular expression. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. For more information, see awslogs-multiline-pattern. This option is ignored if awslogs-datetime-format is also configured. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance.
64542
64581
  The following options apply to all supported log drivers.
64543
- + mode Required: No Valid values: non-blocking | blocking This option defines the delivery mode of log messages from the container to the log driver specified using logDriver. The delivery mode you choose affects application availability when the flow of logs from container is interrupted. If you use the blocking mode and the flow of logs is interrupted, calls from container code to write to the stdout and stderr streams will block. The logging thread of the application will block as a result. This may cause the application to become unresponsive and lead to container healthcheck failure. If you use the non-blocking mode, the container's logs are instead stored in an in-memory intermediate buffer configured with the max-buffer-size option. This prevents the application from becoming unresponsive when logs cannot be sent. We recommend using this mode if you want to ensure service availability and are okay with some log loss. For more information, see Preventing log loss with non-blocking mode in the awslogs container log driver. You can set a default mode for all containers in a specific Region by using the defaultLogDriverMode account setting. If you don't specify the mode option or configure the account setting, Amazon ECS will default to the blocking mode. For more information about the account setting, see Default log driver mode in the Amazon Elastic Container Service Developer Guide. On June 25, 2025, Amazon ECS is changing the default log driver mode from blocking to non-blocking to prioritize task availability over logging. To continue using the blocking mode after this change, do one of the following: Set the mode option in your container definition's logConfiguration as blocking. Set the defaultLogDriverMode account setting to blocking. + max-buffer-size Required: No Default value: 1m When non-blocking mode is used, the max-buffer-size log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
64582
+ + mode Required: No Valid values: non-blocking | blocking This option defines the delivery mode of log messages from the container to the log driver specified using logDriver. The delivery mode you choose affects application availability when the flow of logs from container is interrupted. If you use the blocking mode and the flow of logs is interrupted, calls from container code to write to the stdout and stderr streams will block. The logging thread of the application will block as a result. This may cause the application to become unresponsive and lead to container healthcheck failure. If you use the non-blocking mode, the container's logs are instead stored in an in-memory intermediate buffer configured with the max-buffer-size option. This prevents the application from becoming unresponsive when logs cannot be sent. We recommend using this mode if you want to ensure service availability and are okay with some log loss. For more information, see Preventing log loss with non-blocking mode in the awslogs container log driver. You can set a default mode for all containers in a specific Region by using the defaultLogDriverMode account setting. If you don't specify the mode option or configure the account setting, Amazon ECS will default to the non-blocking mode. For more information about the account setting, see Default log driver mode in the Amazon Elastic Container Service Developer Guide. On June 25, 2025, Amazon ECS changed the default log driver mode from blocking to non-blocking to prioritize task availability over logging. To continue using the blocking mode after this change, do one of the following: Set the mode option in your container definition's logConfiguration as blocking. Set the defaultLogDriverMode account setting to blocking. + max-buffer-size Required: No Default value: 1m When non-blocking mode is used, the max-buffer-size log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
64544
64583
  To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
64545
64584
  When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
64546
64585
  Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
@@ -121794,6 +121833,742 @@ export type OamSinkAttributes = {
121794
121833
  */
121795
121834
  Arn: string;
121796
121835
  };
121836
+ /**
121837
+ * The AWS::ODB::CloudAutonomousVmCluster resource creates a Cloud Autonomous VM Cluster
121838
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudautonomousvmcluster.html}
121839
+ */
121840
+ export type ODBCloudAutonomousVmClusterProps = {
121841
+ /**
121842
+ * The data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
121843
+ */
121844
+ AutonomousDataStorageSizeInTBs?: number;
121845
+ /**
121846
+ * The unique identifier of the Cloud Exadata Infrastructure containing this Autonomous VM cluster.
121847
+ */
121848
+ CloudExadataInfrastructureId?: string;
121849
+ /**
121850
+ * The number of CPU cores enabled per node in the Autonomous VM cluster.
121851
+ */
121852
+ CpuCoreCountPerNode?: number;
121853
+ /**
121854
+ * The list of database servers associated with the Autonomous VM cluster.
121855
+ */
121856
+ DbServers?: string[];
121857
+ /**
121858
+ * The user-provided description of the Autonomous VM cluster.
121859
+ */
121860
+ Description?: string;
121861
+ /**
121862
+ * The display name of the Autonomous VM cluster.
121863
+ * @minLength `1`
121864
+ * @maxLength `255`
121865
+ * @pattern `^[a-zA-Z_](?!.*--)[a-zA-Z0-9_-]*$`
121866
+ */
121867
+ DisplayName?: string;
121868
+ /**
121869
+ * Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
121870
+ */
121871
+ IsMtlsEnabledVmCluster?: boolean;
121872
+ /**
121873
+ * The Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
121874
+ */
121875
+ LicenseModel?: "BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED";
121876
+ /**
121877
+ * The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window.
121878
+ */
121879
+ MaintenanceWindow?: ODBCloudAutonomousVmClusterMaintenanceWindow;
121880
+ /**
121881
+ * The amount of memory allocated per Oracle Compute Unit, in GB.
121882
+ */
121883
+ MemoryPerOracleComputeUnitInGBs?: number;
121884
+ /**
121885
+ * The unique identifier of the ODB network associated with this Autonomous VM cluster.
121886
+ */
121887
+ OdbNetworkId?: string;
121888
+ /**
121889
+ * The SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
121890
+ * @min `1024`
121891
+ * @max `8999`
121892
+ */
121893
+ ScanListenerPortNonTls?: number;
121894
+ /**
121895
+ * The SCAN listener port for TLS (TCP) protocol. The default is 2484.
121896
+ * @min `1024`
121897
+ * @max `8999`
121898
+ */
121899
+ ScanListenerPortTls?: number;
121900
+ /**
121901
+ * The tags associated with the Autonomous VM cluster.
121902
+ */
121903
+ Tags?: ODBCloudAutonomousVmClusterTag[];
121904
+ /**
121905
+ * The time zone of the Autonomous VM cluster.
121906
+ * @minLength `1`
121907
+ * @maxLength `255`
121908
+ */
121909
+ TimeZone?: string;
121910
+ /**
121911
+ * The total number of Autonomous Container Databases that can be created with the allocated local storage.
121912
+ */
121913
+ TotalContainerDatabases?: number;
121914
+ };
121915
+ /**
121916
+ * Attribute type definition for `AWS::ODB::CloudAutonomousVmCluster`.
121917
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudautonomousvmcluster.html#aws-resource-odb-cloudautonomousvmcluster-return-values}
121918
+ */
121919
+ export type ODBCloudAutonomousVmClusterAttributes = {
121920
+ /**
121921
+ * The percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
121922
+ */
121923
+ AutonomousDataStoragePercentage: number;
121924
+ /**
121925
+ * The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
121926
+ */
121927
+ AvailableAutonomousDataStorageSizeInTBs: number;
121928
+ /**
121929
+ * The number of Autonomous CDBs that you can create with the currently available storage.
121930
+ */
121931
+ AvailableContainerDatabases: number;
121932
+ /**
121933
+ * The number of CPU cores available for allocation to Autonomous Databases.
121934
+ */
121935
+ AvailableCpus: number;
121936
+ /**
121937
+ * The Amazon Resource Name (ARN) for the Autonomous VM cluster.
121938
+ */
121939
+ CloudAutonomousVmClusterArn: string;
121940
+ /**
121941
+ * The unique identifier of the Autonomous VM cluster.
121942
+ */
121943
+ CloudAutonomousVmClusterId: string;
121944
+ /**
121945
+ * The compute model of the Autonomous VM cluster: ECPU or OCPU.
121946
+ */
121947
+ ComputeModel: "ECPU" | "OCPU";
121948
+ /**
121949
+ * The total number of CPU cores in the Autonomous VM cluster.
121950
+ */
121951
+ CpuCoreCount: number;
121952
+ /**
121953
+ * The percentage of total CPU cores currently in use in the Autonomous VM cluster.
121954
+ */
121955
+ CpuPercentage: number;
121956
+ /**
121957
+ * The total data storage allocated to the Autonomous VM cluster, in GB.
121958
+ */
121959
+ DataStorageSizeInGBs: number;
121960
+ /**
121961
+ * The total data storage allocated to the Autonomous VM cluster, in TB.
121962
+ */
121963
+ DataStorageSizeInTBs: number;
121964
+ /**
121965
+ * The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
121966
+ */
121967
+ DbNodeStorageSizeInGBs: number;
121968
+ /**
121969
+ * The domain name for the Autonomous VM cluster.
121970
+ */
121971
+ Domain: string;
121972
+ /**
121973
+ * The minimum value to which you can scale down the Exadata storage, in TB.
121974
+ */
121975
+ ExadataStorageInTBsLowestScaledValue: number;
121976
+ /**
121977
+ * The hostname for the Autonomous VM cluster.
121978
+ */
121979
+ Hostname: string;
121980
+ /**
121981
+ * The minimum value to which you can scale down the maximum number of Autonomous CDBs.
121982
+ */
121983
+ MaxAcdsLowestScaledValue: number;
121984
+ /**
121985
+ * The total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
121986
+ */
121987
+ MemorySizeInGBs: number;
121988
+ /**
121989
+ * The number of database server nodes in the Autonomous VM cluster.
121990
+ */
121991
+ NodeCount: number;
121992
+ /**
121993
+ * The number of Autonomous CDBs that can't be provisioned because of resource constraints.
121994
+ */
121995
+ NonProvisionableAutonomousContainerDatabases: number;
121996
+ /**
121997
+ * The name of the OCI resource anchor associated with this Autonomous VM cluster.
121998
+ */
121999
+ OciResourceAnchorName: string;
122000
+ /**
122001
+ * The URL for accessing the OCI console page for this Autonomous VM cluster.
122002
+ */
122003
+ OciUrl: string;
122004
+ /**
122005
+ * The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
122006
+ */
122007
+ Ocid: string;
122008
+ /**
122009
+ * The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
122010
+ */
122011
+ ProvisionableAutonomousContainerDatabases: number;
122012
+ /**
122013
+ * The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
122014
+ */
122015
+ ProvisionedAutonomousContainerDatabases: number;
122016
+ /**
122017
+ * The number of CPU cores currently provisioned in the Autonomous VM cluster.
122018
+ */
122019
+ ProvisionedCpus: number;
122020
+ /**
122021
+ * The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
122022
+ */
122023
+ ReclaimableCpus: number;
122024
+ /**
122025
+ * The number of CPU cores reserved for system operations and redundancy.
122026
+ */
122027
+ ReservedCpus: number;
122028
+ /**
122029
+ * The shape of the Exadata infrastructure for the Autonomous VM cluster.
122030
+ */
122031
+ Shape: string;
122032
+ };
122033
+ /**
122034
+ * Type definition for `AWS::ODB::CloudAutonomousVmCluster.MaintenanceWindow`.
122035
+ * The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window.
122036
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudautonomousvmcluster-maintenancewindow.html}
122037
+ */
122038
+ export type ODBCloudAutonomousVmClusterMaintenanceWindow = {
122039
+ /**
122040
+ * The days of the week when maintenance can be performed.
122041
+ */
122042
+ DaysOfWeek?: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")[];
122043
+ /**
122044
+ * The hours of the day when maintenance can be performed.
122045
+ */
122046
+ HoursOfDay?: number[];
122047
+ /**
122048
+ * The lead time in weeks before the maintenance window.
122049
+ */
122050
+ LeadTimeInWeeks?: number;
122051
+ /**
122052
+ * The months when maintenance can be performed.
122053
+ */
122054
+ Months?: ("JANUARY" | "FEBRUARY" | "MARCH" | "APRIL" | "MAY" | "JUNE" | "JULY" | "AUGUST" | "SEPTEMBER" | "OCTOBER" | "NOVEMBER" | "DECEMBER")[];
122055
+ /**
122056
+ * The preference for the maintenance window scheduling.
122057
+ */
122058
+ Preference?: "NO_PREFERENCE" | "CUSTOM_PREFERENCE";
122059
+ /**
122060
+ * The weeks of the month when maintenance can be performed.
122061
+ */
122062
+ WeeksOfMonth?: number[];
122063
+ };
122064
+ /**
122065
+ * Type definition for `AWS::ODB::CloudAutonomousVmCluster.Tag`.
122066
+ * A key-value pair to associate with a resource.
122067
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudautonomousvmcluster-tag.html}
122068
+ */
122069
+ export type ODBCloudAutonomousVmClusterTag = {
122070
+ /**
122071
+ * The key name of the tag. You can specify a value that's 1 to 128 Unicode characters in length and can't be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, @, -, and ".
122072
+ * @minLength `1`
122073
+ * @maxLength `128`
122074
+ */
122075
+ Key: string;
122076
+ /**
122077
+ * The value for the tag. You can specify a value that's 1 to 256 characters in length. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
122078
+ * @minLength `0`
122079
+ * @maxLength `256`
122080
+ */
122081
+ Value?: string;
122082
+ };
122083
+ /**
122084
+ * The AWS::ODB::CloudExadataInfrastructure resource creates an Exadata Infrastructure
122085
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html}
122086
+ */
122087
+ export type ODBCloudExadataInfrastructureProps = {
122088
+ /**
122089
+ * The name of the Availability Zone (AZ) where the Exadata infrastructure is located.
122090
+ * @minLength `1`
122091
+ * @maxLength `255`
122092
+ */
122093
+ AvailabilityZone?: string;
122094
+ /**
122095
+ * The AZ ID of the AZ where the Exadata infrastructure is located.
122096
+ * @minLength `1`
122097
+ * @maxLength `255`
122098
+ */
122099
+ AvailabilityZoneId?: string;
122100
+ /**
122101
+ * The number of database servers for the Exadata infrastructure.
122102
+ */
122103
+ ComputeCount?: number;
122104
+ /**
122105
+ * The email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.
122106
+ */
122107
+ CustomerContactsToSendToOCI?: ODBCloudExadataInfrastructureCustomerContact[];
122108
+ /**
122109
+ * The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation.
122110
+ * @minLength `1`
122111
+ * @maxLength `255`
122112
+ * @pattern `^[a-zA-Z0-9_\/.=-]+$`
122113
+ */
122114
+ DatabaseServerType?: string;
122115
+ /**
122116
+ * The user-friendly name for the Exadata infrastructure.
122117
+ * @minLength `1`
122118
+ * @maxLength `255`
122119
+ * @pattern `^[a-zA-Z_](?!.*--)[a-zA-Z0-9_-]*$`
122120
+ */
122121
+ DisplayName?: string;
122122
+ /**
122123
+ * The model name of the Exadata infrastructure.
122124
+ * @minLength `1`
122125
+ * @maxLength `255`
122126
+ * @pattern `^[a-zA-Z0-9_\/.=-]+$`
122127
+ */
122128
+ Shape?: string;
122129
+ /**
122130
+ * The number of storage servers that are activated for the Exadata infrastructure.
122131
+ */
122132
+ StorageCount?: number;
122133
+ /**
122134
+ * The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation.
122135
+ * @minLength `1`
122136
+ * @maxLength `255`
122137
+ * @pattern `^[a-zA-Z0-9_\/.=-]+$`
122138
+ */
122139
+ StorageServerType?: string;
122140
+ /**
122141
+ * Tags to assign to the Exadata Infrastructure.
122142
+ */
122143
+ Tags?: ODBCloudExadataInfrastructureTag[];
122144
+ };
122145
+ /**
122146
+ * Attribute type definition for `AWS::ODB::CloudExadataInfrastructure`.
122147
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#aws-resource-odb-cloudexadatainfrastructure-return-values}
122148
+ */
122149
+ export type ODBCloudExadataInfrastructureAttributes = {
122150
+ /**
122151
+ * The number of storage servers requested for the Exadata infrastructure.
122152
+ */
122153
+ ActivatedStorageCount: number;
122154
+ /**
122155
+ * The number of storage servers requested for the Exadata infrastructure.
122156
+ */
122157
+ AdditionalStorageCount: number;
122158
+ /**
122159
+ * The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
122160
+ */
122161
+ AvailableStorageSizeInGBs: number;
122162
+ /**
122163
+ * The Amazon Resource Name (ARN) for the Exadata infrastructure.
122164
+ */
122165
+ CloudExadataInfrastructureArn: string;
122166
+ /**
122167
+ * The unique identifier for the Exadata infrastructure.
122168
+ */
122169
+ CloudExadataInfrastructureId: string;
122170
+ /**
122171
+ * 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.
122172
+ */
122173
+ ComputeModel: string;
122174
+ /**
122175
+ * The total number of CPU cores that are allocated to the Exadata infrastructure.
122176
+ */
122177
+ CpuCount: number;
122178
+ /**
122179
+ * The size of the Exadata infrastructure's data disk group, in terabytes (TB).
122180
+ */
122181
+ DataStorageSizeInTBs: number;
122182
+ /**
122183
+ * The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
122184
+ */
122185
+ DbNodeStorageSizeInGBs: number;
122186
+ /**
122187
+ * The list of database server identifiers for the Exadata infrastructure.
122188
+ */
122189
+ DbServerIds: string[];
122190
+ /**
122191
+ * The software version of the database servers (dom0) in the Exadata infrastructure.
122192
+ */
122193
+ DbServerVersion: string;
122194
+ /**
122195
+ * The total number of CPU cores available on the Exadata infrastructure.
122196
+ */
122197
+ MaxCpuCount: number;
122198
+ /**
122199
+ * The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
122200
+ */
122201
+ MaxDataStorageInTBs: number;
122202
+ /**
122203
+ * The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
122204
+ */
122205
+ MaxDbNodeStorageSizeInGBs: number;
122206
+ /**
122207
+ * The total amount of memory, in gigabytes (GB), that's available on the Exadata infrastructure.
122208
+ */
122209
+ MaxMemoryInGBs: number;
122210
+ /**
122211
+ * The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
122212
+ */
122213
+ MemorySizeInGBs: number;
122214
+ /**
122215
+ * The name of the OCI resource anchor for the Exadata infrastructure.
122216
+ */
122217
+ OciResourceAnchorName: string;
122218
+ /**
122219
+ * The HTTPS link to the Exadata infrastructure in OCI.
122220
+ */
122221
+ OciUrl: string;
122222
+ /**
122223
+ * The OCID of the Exadata infrastructure.
122224
+ */
122225
+ Ocid: string;
122226
+ /**
122227
+ * The software version of the storage servers on the Exadata infrastructure.
122228
+ */
122229
+ StorageServerVersion: string;
122230
+ /**
122231
+ * The total amount of storage, in gigabytes (GB), on the the Exadata infrastructure.
122232
+ */
122233
+ TotalStorageSizeInGBs: number;
122234
+ };
122235
+ /**
122236
+ * Type definition for `AWS::ODB::CloudExadataInfrastructure.CustomerContact`.
122237
+ * A contact to receive notification from Oracle about maintenance updates for a specific Exadata infrastructure.
122238
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudexadatainfrastructure-customercontact.html}
122239
+ */
122240
+ export type ODBCloudExadataInfrastructureCustomerContact = {
122241
+ /**
122242
+ * The email address of the contact.
122243
+ */
122244
+ Email?: string;
122245
+ };
122246
+ /**
122247
+ * Type definition for `AWS::ODB::CloudExadataInfrastructure.Tag`.
122248
+ * A key-value pair to associate with a resource.
122249
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudexadatainfrastructure-tag.html}
122250
+ */
122251
+ export type ODBCloudExadataInfrastructureTag = {
122252
+ /**
122253
+ * The key name of the tag. You can specify a value that's 1 to 128 Unicode characters in length and can't be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, @, -, and ".
122254
+ * @minLength `1`
122255
+ * @maxLength `128`
122256
+ */
122257
+ Key: string;
122258
+ /**
122259
+ * The value for the tag. You can specify a value that's 1 to 256 characters in length. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
122260
+ * @minLength `0`
122261
+ * @maxLength `256`
122262
+ */
122263
+ Value?: string;
122264
+ };
122265
+ /**
122266
+ * The AWS::ODB::CloudVmCluster resource creates a Cloud VM Cluster
122267
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html}
122268
+ */
122269
+ export type ODBCloudVmClusterProps = {
122270
+ /**
122271
+ * The unique identifier of the Exadata infrastructure that this VM cluster belongs to.
122272
+ */
122273
+ CloudExadataInfrastructureId?: string;
122274
+ /**
122275
+ * The name of the Grid Infrastructure (GI) cluster.
122276
+ * @minLength `1`
122277
+ * @maxLength `11`
122278
+ * @pattern `^[a-zA-Z][a-zA-Z0-9-]*$`
122279
+ */
122280
+ ClusterName?: string;
122281
+ /**
122282
+ * The number of CPU cores enabled on the VM cluster.
122283
+ * @min `0`
122284
+ * @max `368`
122285
+ */
122286
+ CpuCoreCount?: number;
122287
+ /**
122288
+ * The set of diagnostic collection options enabled for the VM cluster.
122289
+ */
122290
+ DataCollectionOptions?: ODBCloudVmClusterDataCollectionOptions;
122291
+ /**
122292
+ * The size of the data disk group, in terabytes (TB), that's allocated for the VM cluster.
122293
+ */
122294
+ DataStorageSizeInTBs?: number;
122295
+ /**
122296
+ * The amount of local node storage, in gigabytes (GB), that's allocated for the VM cluster.
122297
+ */
122298
+ DbNodeStorageSizeInGBs?: number;
122299
+ /**
122300
+ * The list of database servers for the VM cluster.
122301
+ */
122302
+ DbServers?: string[];
122303
+ /**
122304
+ * The user-friendly name for the VM cluster.
122305
+ * @minLength `1`
122306
+ * @maxLength `255`
122307
+ * @pattern `^[a-zA-Z_](?!.*--)[a-zA-Z0-9_-]*$`
122308
+ */
122309
+ DisplayName?: string;
122310
+ /**
122311
+ * The software version of the Oracle Grid Infrastructure (GI) for the VM cluster.
122312
+ * @minLength `1`
122313
+ * @maxLength `255`
122314
+ */
122315
+ GiVersion?: string;
122316
+ /**
122317
+ * The host name for the VM cluster.
122318
+ * @minLength `1`
122319
+ * @maxLength `12`
122320
+ * @pattern `^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]$`
122321
+ */
122322
+ Hostname?: string;
122323
+ /**
122324
+ * Indicates whether database backups to local Exadata storage is enabled for the VM cluster.
122325
+ */
122326
+ IsLocalBackupEnabled?: boolean;
122327
+ /**
122328
+ * Indicates whether the VM cluster is configured with a sparse disk group.
122329
+ */
122330
+ IsSparseDiskgroupEnabled?: boolean;
122331
+ /**
122332
+ * The Oracle license model applied to the VM cluster.
122333
+ */
122334
+ LicenseModel?: "BRING_YOUR_OWN_LICENSE" | "LICENSE_INCLUDED";
122335
+ /**
122336
+ * The amount of memory, in gigabytes (GB), that's allocated for the VM cluster.
122337
+ */
122338
+ MemorySizeInGBs?: number;
122339
+ /**
122340
+ * The unique identifier of the ODB network for the VM cluster.
122341
+ */
122342
+ OdbNetworkId?: string;
122343
+ /**
122344
+ * Property description not available.
122345
+ * @min `1024`
122346
+ * @max `8999`
122347
+ */
122348
+ ScanListenerPortTcp?: number;
122349
+ /**
122350
+ * The public key portion of one or more key pairs used for SSH access to the VM cluster.
122351
+ */
122352
+ SshPublicKeys?: string[];
122353
+ /**
122354
+ * The operating system version of the image chosen for the VM cluster.
122355
+ * @minLength `1`
122356
+ * @maxLength `255`
122357
+ */
122358
+ SystemVersion?: string;
122359
+ /**
122360
+ * Tags to assign to the Vm Cluster.
122361
+ */
122362
+ Tags?: ODBCloudVmClusterTag[];
122363
+ /**
122364
+ * The time zone of the VM cluster.
122365
+ * @minLength `1`
122366
+ * @maxLength `255`
122367
+ */
122368
+ TimeZone?: string;
122369
+ };
122370
+ /**
122371
+ * Attribute type definition for `AWS::ODB::CloudVmCluster`.
122372
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.html#aws-resource-odb-cloudvmcluster-return-values}
122373
+ */
122374
+ export type ODBCloudVmClusterAttributes = {
122375
+ /**
122376
+ * The Amazon Resource Name (ARN) of the VM cluster.
122377
+ */
122378
+ CloudVmClusterArn: string;
122379
+ /**
122380
+ * The unique identifier of the VM cluster.
122381
+ */
122382
+ CloudVmClusterId: string;
122383
+ /**
122384
+ * 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.
122385
+ */
122386
+ ComputeModel: string;
122387
+ /**
122388
+ * The type of redundancy configured for the VM cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
122389
+ */
122390
+ DiskRedundancy: string;
122391
+ /**
122392
+ * The domain of the VM cluster.
122393
+ */
122394
+ Domain: string;
122395
+ /**
122396
+ * The port number configured for the listener on the VM cluster.
122397
+ */
122398
+ ListenerPort: number;
122399
+ /**
122400
+ * The number of nodes in the VM cluster.
122401
+ */
122402
+ NodeCount: number;
122403
+ /**
122404
+ * The name of the OCI resource anchor for the VM cluster.
122405
+ */
122406
+ OciResourceAnchorName: string;
122407
+ /**
122408
+ * The HTTPS link to the VM cluster in OCI.
122409
+ */
122410
+ OciUrl: string;
122411
+ /**
122412
+ * The OCID of the VM cluster.
122413
+ */
122414
+ Ocid: string;
122415
+ /**
122416
+ * The FQDN of the DNS record for the Single Client Access Name (SCAN) IP addresses that are associated with the VM cluster.
122417
+ */
122418
+ ScanDnsName: string;
122419
+ /**
122420
+ * The OCID of the SCAN IP addresses that are associated with the VM cluster.
122421
+ */
122422
+ ScanIpIds: string[];
122423
+ /**
122424
+ * The hardware model name of the Exadata infrastructure that's running the VM cluster.
122425
+ */
122426
+ Shape: string;
122427
+ /**
122428
+ * The amount of local node storage, in gigabytes (GB), that's allocated to the VM cluster.
122429
+ */
122430
+ StorageSizeInGBs: number;
122431
+ /**
122432
+ * 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.
122433
+ */
122434
+ VipIds: string[];
122435
+ };
122436
+ /**
122437
+ * Type definition for `AWS::ODB::CloudVmCluster.DataCollectionOptions`.
122438
+ * Information about the data collection options enabled for a VM cluster.
122439
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudvmcluster-datacollectionoptions.html}
122440
+ */
122441
+ export type ODBCloudVmClusterDataCollectionOptions = {
122442
+ /**
122443
+ * Indicates whether diagnostic collection is enabled for the VM cluster.
122444
+ */
122445
+ IsDiagnosticsEventsEnabled?: boolean;
122446
+ /**
122447
+ * Indicates whether health monitoring is enabled for the VM cluster.
122448
+ */
122449
+ IsHealthMonitoringEnabled?: boolean;
122450
+ /**
122451
+ * Indicates whether incident logs are enabled for the cloud VM cluster.
122452
+ */
122453
+ IsIncidentLogsEnabled?: boolean;
122454
+ };
122455
+ /**
122456
+ * Type definition for `AWS::ODB::CloudVmCluster.Tag`.
122457
+ * A key-value pair to associate with a resource.
122458
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-cloudvmcluster-tag.html}
122459
+ */
122460
+ export type ODBCloudVmClusterTag = {
122461
+ /**
122462
+ * The key name of the tag. You can specify a value that's 1 to 128 Unicode characters in length and can't be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, @, -, and ".
122463
+ * @minLength `1`
122464
+ * @maxLength `128`
122465
+ */
122466
+ Key: string;
122467
+ /**
122468
+ * The value for the tag. You can specify a value that's 1 to 256 characters in length. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
122469
+ * @minLength `0`
122470
+ * @maxLength `256`
122471
+ */
122472
+ Value?: string;
122473
+ };
122474
+ /**
122475
+ * The AWS::ODB::OdbNetwork resource creates an ODB Network
122476
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html}
122477
+ */
122478
+ export type ODBOdbNetworkProps = {
122479
+ /**
122480
+ * The AWS Availability Zone (AZ) where the ODB network is located.
122481
+ * @minLength `1`
122482
+ * @maxLength `255`
122483
+ */
122484
+ AvailabilityZone?: string;
122485
+ /**
122486
+ * The AZ ID of the AZ where the ODB network is located.
122487
+ * @minLength `1`
122488
+ * @maxLength `255`
122489
+ */
122490
+ AvailabilityZoneId?: string;
122491
+ /**
122492
+ * The CIDR range of the backup subnet in the ODB network.
122493
+ * @minLength `1`
122494
+ * @maxLength `255`
122495
+ */
122496
+ BackupSubnetCidr?: string;
122497
+ /**
122498
+ * The CIDR range of the client subnet in the ODB network.
122499
+ * @minLength `1`
122500
+ * @maxLength `255`
122501
+ */
122502
+ ClientSubnetCidr?: string;
122503
+ /**
122504
+ * The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com.
122505
+ * @minLength `1`
122506
+ * @maxLength `255`
122507
+ */
122508
+ DefaultDnsPrefix?: string;
122509
+ /**
122510
+ * Specifies whether to delete associated OCI networking resources along with the ODB network.
122511
+ */
122512
+ DeleteAssociatedResources?: boolean;
122513
+ /**
122514
+ * The user-friendly name of the ODB network.
122515
+ * @minLength `1`
122516
+ * @maxLength `255`
122517
+ * @pattern `^[a-zA-Z_](?!.*--)[a-zA-Z0-9_-]*$`
122518
+ */
122519
+ DisplayName?: string;
122520
+ /**
122521
+ * Tags to assign to the Odb Network.
122522
+ */
122523
+ Tags?: ODBOdbNetworkTag[];
122524
+ };
122525
+ /**
122526
+ * Attribute type definition for `AWS::ODB::OdbNetwork`.
122527
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html#aws-resource-odb-odbnetwork-return-values}
122528
+ */
122529
+ export type ODBOdbNetworkAttributes = {
122530
+ /**
122531
+ * The unique identifier of the OCI network anchor for the ODB network.
122532
+ * @minLength `1`
122533
+ * @maxLength `255`
122534
+ */
122535
+ OciNetworkAnchorId: string;
122536
+ /**
122537
+ * The name of the OCI resource anchor that's associated with the ODB network.
122538
+ */
122539
+ OciResourceAnchorName: string;
122540
+ /**
122541
+ * The URL for the VCN that's associated with the ODB network.
122542
+ */
122543
+ OciVcnUrl: string;
122544
+ /**
122545
+ * The Amazon Resource Name (ARN) of the ODB network.
122546
+ */
122547
+ OdbNetworkArn: string;
122548
+ /**
122549
+ * The unique identifier of the ODB network.
122550
+ */
122551
+ OdbNetworkId: string;
122552
+ };
122553
+ /**
122554
+ * Type definition for `AWS::ODB::OdbNetwork.Tag`.
122555
+ * A key-value pair to associate with a resource.
122556
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-odb-odbnetwork-tag.html}
122557
+ */
122558
+ export type ODBOdbNetworkTag = {
122559
+ /**
122560
+ * The key name of the tag. You can specify a value that's 1 to 128 Unicode characters in length and can't be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, @, -, and ".
122561
+ * @minLength `1`
122562
+ * @maxLength `128`
122563
+ */
122564
+ Key: string;
122565
+ /**
122566
+ * The value for the tag. You can specify a value that's 1 to 256 characters in length. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
122567
+ * @minLength `0`
122568
+ * @maxLength `256`
122569
+ */
122570
+ Value?: string;
122571
+ };
121797
122572
  /**
121798
122573
  * Definition of AWS::Omics::AnnotationStore Resource Type
121799
122574
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html}
@@ -138748,7 +139523,13 @@ export type QuickSightCustomPermissionsCapabilities = {
138748
139523
  CreateSPICEDataset?: QuickSightCustomPermissionsCapabilityState;
138749
139524
  CreateSharedFolders?: QuickSightCustomPermissionsCapabilityState;
138750
139525
  ExportToCsv?: QuickSightCustomPermissionsCapabilityState;
139526
+ ExportToCsvInScheduledReports?: QuickSightCustomPermissionsCapabilityState;
138751
139527
  ExportToExcel?: QuickSightCustomPermissionsCapabilityState;
139528
+ ExportToExcelInScheduledReports?: QuickSightCustomPermissionsCapabilityState;
139529
+ ExportToPdf?: QuickSightCustomPermissionsCapabilityState;
139530
+ ExportToPdfInScheduledReports?: QuickSightCustomPermissionsCapabilityState;
139531
+ IncludeContentInScheduledReportsEmail?: QuickSightCustomPermissionsCapabilityState;
139532
+ PrintReports?: QuickSightCustomPermissionsCapabilityState;
138752
139533
  RenameSharedFolders?: QuickSightCustomPermissionsCapabilityState;
138753
139534
  ShareAnalyses?: QuickSightCustomPermissionsCapabilityState;
138754
139535
  ShareDashboards?: QuickSightCustomPermissionsCapabilityState;
@@ -160528,6 +161309,7 @@ export type RDSDBInstanceProps = {
160528
161309
  * @min `0`
160529
161310
  */
160530
161311
  BackupRetentionPeriod?: number;
161312
+ BackupTarget?: string;
160531
161313
  /**
160532
161314
  * The identifier of the CA certificate for this DB instance.
160533
161315
  For more information, see [Using SSL/TLS to encrypt a connection to a DB instance](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html) in the *Amazon RDS User Guide* and [Using SSL/TLS to encrypt a connection to a DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html) in the *Amazon Aurora User Guide*.
@@ -170686,6 +171468,152 @@ export type S3TablesNamespaceProps = {
170686
171468
  */
170687
171469
  TableBucketARN: string;
170688
171470
  };
171471
+ /**
171472
+ * Resource Type definition for AWS::S3Tables::Table
171473
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html}
171474
+ */
171475
+ export type S3TablesTableProps = {
171476
+ /**
171477
+ * Settings governing the Compaction maintenance action. Contains details about the compaction settings for an Iceberg table.
171478
+ */
171479
+ Compaction?: S3TablesTableCompaction;
171480
+ /**
171481
+ * Contains details about the metadata for an Iceberg table.
171482
+ */
171483
+ IcebergMetadata?: S3TablesTableIcebergMetadata;
171484
+ /**
171485
+ * The namespace that the table belongs to.
171486
+ */
171487
+ Namespace: string;
171488
+ /**
171489
+ * Format of the table.
171490
+ */
171491
+ OpenTableFormat: S3TablesTableOpenTableFormat;
171492
+ /**
171493
+ * Contains details about the snapshot management settings for an Iceberg table. A snapshot is expired when it exceeds MinSnapshotsToKeep and MaxSnapshotAgeHours.
171494
+ */
171495
+ SnapshotManagement?: S3TablesTableSnapshotManagement;
171496
+ /**
171497
+ * The Amazon Resource Name (ARN) of the specified table bucket.
171498
+ */
171499
+ TableBucketARN: string;
171500
+ /**
171501
+ * The name for the table.
171502
+ */
171503
+ TableName: string;
171504
+ /**
171505
+ * Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
171506
+ */
171507
+ WithoutMetadata?: S3TablesTableWithoutMetadata;
171508
+ };
171509
+ /**
171510
+ * Attribute type definition for `AWS::S3Tables::Table`.
171511
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#aws-resource-s3tables-table-return-values}
171512
+ */
171513
+ export type S3TablesTableAttributes = {
171514
+ /**
171515
+ * The Amazon Resource Name (ARN) of the specified table.
171516
+ */
171517
+ TableARN: string;
171518
+ /**
171519
+ * The version token of the table
171520
+ */
171521
+ VersionToken: string;
171522
+ /**
171523
+ * The warehouse location of the table.
171524
+ */
171525
+ WarehouseLocation: string;
171526
+ };
171527
+ /**
171528
+ * Type definition for `AWS::S3Tables::Table.Compaction`.
171529
+ * Settings governing the Compaction maintenance action. Contains details about the compaction settings for an Iceberg table.
171530
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.html}
171531
+ */
171532
+ export type S3TablesTableCompaction = {
171533
+ /**
171534
+ * Indicates whether the Compaction maintenance action is enabled.
171535
+ */
171536
+ Status?: "enabled" | "disabled";
171537
+ /**
171538
+ * The target file size for the table in MB.
171539
+ * @min `64`
171540
+ */
171541
+ TargetFileSizeMB?: number;
171542
+ };
171543
+ /**
171544
+ * Type definition for `AWS::S3Tables::Table.IcebergMetadata`.
171545
+ * Contains details about the metadata for an Iceberg table.
171546
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergmetadata.html}
171547
+ */
171548
+ export type S3TablesTableIcebergMetadata = {
171549
+ /**
171550
+ * Contains details about the schema for an Iceberg table
171551
+ */
171552
+ IcebergSchema: S3TablesTableIcebergSchema;
171553
+ };
171554
+ /**
171555
+ * Type definition for `AWS::S3Tables::Table.IcebergSchema`.
171556
+ * Contains details about the schema for an Iceberg table
171557
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergschema.html}
171558
+ */
171559
+ export type S3TablesTableIcebergSchema = {
171560
+ /**
171561
+ * Contains details about the schema for an Iceberg table
171562
+ */
171563
+ SchemaFieldList: S3TablesTableSchemaField[];
171564
+ };
171565
+ /**
171566
+ * Type definition for `AWS::S3Tables::Table.OpenTableFormat`.
171567
+ * Format of the table.
171568
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-opentableformat.html}
171569
+ */
171570
+ export type S3TablesTableOpenTableFormat = "ICEBERG";
171571
+ /**
171572
+ * Type definition for `AWS::S3Tables::Table.SchemaField`.
171573
+ * Contains details about the schema for an Iceberg table
171574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-schemafield.html}
171575
+ */
171576
+ export type S3TablesTableSchemaField = {
171577
+ /**
171578
+ * The name of the field
171579
+ */
171580
+ Name: string;
171581
+ /**
171582
+ * A Boolean value that specifies whether values are required for each row in this field
171583
+ */
171584
+ Required?: boolean;
171585
+ /**
171586
+ * The field type
171587
+ */
171588
+ Type: string;
171589
+ };
171590
+ /**
171591
+ * Type definition for `AWS::S3Tables::Table.SnapshotManagement`.
171592
+ * Contains details about the snapshot management settings for an Iceberg table. A snapshot is expired when it exceeds MinSnapshotsToKeep and MaxSnapshotAgeHours.
171593
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-snapshotmanagement.html}
171594
+ */
171595
+ export type S3TablesTableSnapshotManagement = {
171596
+ /**
171597
+ * The maximum age of a snapshot before it can be expired.
171598
+ * @min `1`
171599
+ */
171600
+ MaxSnapshotAgeHours?: number;
171601
+ /**
171602
+ * The minimum number of snapshots to keep.
171603
+ * @min `1`
171604
+ */
171605
+ MinSnapshotsToKeep?: number;
171606
+ /**
171607
+ * Indicates whether the SnapshotManagement maintenance action is enabled.
171608
+ */
171609
+ Status?: "enabled" | "disabled";
171610
+ };
171611
+ /**
171612
+ * Type definition for `AWS::S3Tables::Table.WithoutMetadata`.
171613
+ * Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
171614
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-withoutmetadata.html}
171615
+ */
171616
+ export type S3TablesTableWithoutMetadata = "Yes";
170689
171617
  /**
170690
171618
  * Resource type definition for `AWS::S3Tables::TableBucket`.
170691
171619
  * Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
@@ -200848,6 +201776,10 @@ export interface ResourceTypes {
200848
201776
  "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactProps;
200849
201777
  "AWS::Oam::Link": OamLinkProps;
200850
201778
  "AWS::Oam::Sink": OamSinkProps;
201779
+ "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterProps;
201780
+ "AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureProps;
201781
+ "AWS::ODB::CloudVmCluster": ODBCloudVmClusterProps;
201782
+ "AWS::ODB::OdbNetwork": ODBOdbNetworkProps;
200851
201783
  "AWS::Omics::AnnotationStore": OmicsAnnotationStoreProps;
200852
201784
  "AWS::Omics::ReferenceStore": OmicsReferenceStoreProps;
200853
201785
  "AWS::Omics::RunGroup": OmicsRunGroupProps;
@@ -201050,6 +201982,7 @@ export interface ResourceTypes {
201050
201982
  "AWS::S3Outposts::BucketPolicy": S3OutpostsBucketPolicyProps;
201051
201983
  "AWS::S3Outposts::Endpoint": S3OutpostsEndpointProps;
201052
201984
  "AWS::S3Tables::Namespace": S3TablesNamespaceProps;
201985
+ "AWS::S3Tables::Table": S3TablesTableProps;
201053
201986
  "AWS::S3Tables::TableBucket": S3TablesTableBucketProps;
201054
201987
  "AWS::S3Tables::TableBucketPolicy": S3TablesTableBucketPolicyProps;
201055
201988
  "AWS::SageMaker::App": SageMakerAppProps;
@@ -202150,6 +203083,10 @@ export interface AttributeTypes {
202150
203083
  "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactAttributes;
202151
203084
  "AWS::Oam::Link": OamLinkAttributes;
202152
203085
  "AWS::Oam::Sink": OamSinkAttributes;
203086
+ "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterAttributes;
203087
+ "AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureAttributes;
203088
+ "AWS::ODB::CloudVmCluster": ODBCloudVmClusterAttributes;
203089
+ "AWS::ODB::OdbNetwork": ODBOdbNetworkAttributes;
202153
203090
  "AWS::Omics::AnnotationStore": OmicsAnnotationStoreAttributes;
202154
203091
  "AWS::Omics::ReferenceStore": OmicsReferenceStoreAttributes;
202155
203092
  "AWS::Omics::RunGroup": OmicsRunGroupAttributes;
@@ -202331,6 +203268,7 @@ export interface AttributeTypes {
202331
203268
  "AWS::S3Outposts::AccessPoint": S3OutpostsAccessPointAttributes;
202332
203269
  "AWS::S3Outposts::Bucket": S3OutpostsBucketAttributes;
202333
203270
  "AWS::S3Outposts::Endpoint": S3OutpostsEndpointAttributes;
203271
+ "AWS::S3Tables::Table": S3TablesTableAttributes;
202334
203272
  "AWS::S3Tables::TableBucket": S3TablesTableBucketAttributes;
202335
203273
  "AWS::SageMaker::App": SageMakerAppAttributes;
202336
203274
  "AWS::SageMaker::AppImageConfig": SageMakerAppImageConfigAttributes;
@@ -203521,6 +204459,10 @@ export declare const ResourceType: {
203521
204459
  readonly NotificationsContactsEmailContact: "AWS::NotificationsContacts::EmailContact";
203522
204460
  readonly OamLink: "AWS::Oam::Link";
203523
204461
  readonly OamSink: "AWS::Oam::Sink";
204462
+ readonly ODBCloudAutonomousVmCluster: "AWS::ODB::CloudAutonomousVmCluster";
204463
+ readonly ODBCloudExadataInfrastructure: "AWS::ODB::CloudExadataInfrastructure";
204464
+ readonly ODBCloudVmCluster: "AWS::ODB::CloudVmCluster";
204465
+ readonly ODBOdbNetwork: "AWS::ODB::OdbNetwork";
203524
204466
  readonly OmicsAnnotationStore: "AWS::Omics::AnnotationStore";
203525
204467
  readonly OmicsReferenceStore: "AWS::Omics::ReferenceStore";
203526
204468
  readonly OmicsRunGroup: "AWS::Omics::RunGroup";
@@ -203723,6 +204665,7 @@ export declare const ResourceType: {
203723
204665
  readonly S3OutpostsBucketPolicy: "AWS::S3Outposts::BucketPolicy";
203724
204666
  readonly S3OutpostsEndpoint: "AWS::S3Outposts::Endpoint";
203725
204667
  readonly S3TablesNamespace: "AWS::S3Tables::Namespace";
204668
+ readonly S3TablesTable: "AWS::S3Tables::Table";
203726
204669
  readonly S3TablesTableBucket: "AWS::S3Tables::TableBucket";
203727
204670
  readonly S3TablesTableBucketPolicy: "AWS::S3Tables::TableBucketPolicy";
203728
204671
  readonly SageMakerApp: "AWS::SageMaker::App";