Module Smaws_Client_Redshift.Types

type nonrec zero_etl_integration_status =
  1. | NEEDS_ATTENTION
  2. | SYNCING
  3. | DELETING
  4. | FAILED
  5. | MODIFYING
  6. | ACTIVE
  7. | CREATING
type nonrec string_ = string
type nonrec vpc_security_group_membership = {
  1. status : string_ option;
    (*

    The status of the VPC security group.

    *)
  2. vpc_security_group_id : string_ option;
    (*

    The identifier of the VPC security group.

    *)
}

Describes the members of a VPC security group.

type nonrec vpc_security_group_membership_list = vpc_security_group_membership list
type nonrec vpc_security_group_id_list = string_ list
type nonrec vpc_identifier_list = string_ list
type nonrec network_interface = {
  1. ipv6_address : string_ option;
    (*

    The IPv6 address of the network interface within the subnet.

    *)
  2. availability_zone : string_ option;
    (*

    The Availability Zone.

    *)
  3. private_ip_address : string_ option;
    (*

    The IPv4 address of the network interface within the subnet.

    *)
  4. subnet_id : string_ option;
    (*

    The subnet identifier.

    *)
  5. network_interface_id : string_ option;
    (*

    The network interface identifier.

    *)
}

Describes a network interface.

type nonrec network_interface_list = network_interface list
type nonrec vpc_endpoint = {
  1. network_interfaces : network_interface_list option;
    (*

    One or more network interfaces of the endpoint. Also known as an interface endpoint.

    *)
  2. vpc_id : string_ option;
    (*

    The VPC identifier that the endpoint is associated.

    *)
  3. vpc_endpoint_id : string_ option;
    (*

    The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

    *)
}

The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

type nonrec vpc_endpoints_list = vpc_endpoint list
type nonrec value_string_list = string_ list
type nonrec usage_limit_feature_type =
  1. | EXTRA_COMPUTE_FOR_AUTOMATIC_OPTIMIZATION
  2. | CROSS_REGION_DATASHARING
  3. | CONCURRENCY_SCALING
  4. | SPECTRUM
type nonrec usage_limit_limit_type =
  1. | DATA_SCANNED
  2. | TIME
type nonrec long = Smaws_Lib.CoreTypes.Int64.t
type nonrec usage_limit_period =
  1. | MONTHLY
  2. | WEEKLY
  3. | DAILY
type nonrec usage_limit_breach_action =
  1. | DISABLE
  2. | EMIT_METRIC
  3. | LOG
type nonrec tag = {
  1. value : string_ option;
    (*

    The value for the resource tag.

    *)
  2. key : string_ option;
    (*

    The key, or name, for the resource tag.

    *)
}

A tag consisting of a name/value pair for a resource.

type nonrec tag_list = tag list
type nonrec usage_limit = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. breach_action : usage_limit_breach_action option;
    (*

    The action that Amazon Redshift takes when the limit is reached. Possible values are:

    • log - To log an event in a system table. The default is log.
    • emit-metric - To emit CloudWatch metrics.
    • disable - To disable the feature until the next usage period begins.
    *)
  3. period : usage_limit_period option;
    (*

    The time period that the amount applies to. A weekly period begins on Sunday. The default is monthly.

    *)
  4. amount : long option;
    (*

    The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB).

    *)
  5. limit_type : usage_limit_limit_type option;
    (*

    The type of limit. Depending on the feature type, this can be based on a time duration or data size.

    *)
  6. feature_type : usage_limit_feature_type option;
    (*

    The Amazon Redshift feature to which the limit applies.

    *)
  7. cluster_identifier : string_ option;
    (*

    The identifier of the cluster with a usage limit.

    *)
  8. usage_limit_id : string_ option;
    (*

    The identifier of the usage limit.

    *)
}

Describes a usage limit object for a cluster.

type nonrec usage_limits = usage_limit list
type nonrec exception_message = string
type nonrec usage_limit_not_found_fault = {
  1. message : exception_message option;
}

The usage limit identifier can't be found.

type nonrec usage_limit_list = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. usage_limits : usage_limits option;
    (*

    Contains the output from the DescribeUsageLimits action.

    *)
}
type nonrec usage_limit_already_exists_fault = {
  1. message : exception_message option;
}

The usage limit already exists.

type nonrec supported_operation = {
  1. operation_name : string_ option;
    (*

    A list of the supported operations.

    *)
}

Describes the operations that are allowed on a maintenance track.

type nonrec supported_operation_list = supported_operation list
type nonrec update_target = {
  1. supported_operations : supported_operation_list option;
    (*

    A list of operations supported by the maintenance track.

    *)
  2. database_version : string_ option;
    (*

    The cluster version for the new maintenance track.

    *)
  3. maintenance_track_name : string_ option;
    (*

    The name of the new maintenance track.

    *)
}

A maintenance track that you can switch the current track to.

type nonrec partner_integration_account_id = string
type nonrec partner_integration_cluster_identifier = string
type nonrec partner_integration_database_name = string
type nonrec partner_integration_partner_name = string
type nonrec partner_integration_status =
  1. | ConnectionFailure
  2. | RuntimeFailure
  3. | Inactive
  4. | Active
type nonrec partner_integration_status_message = string
type nonrec update_partner_status_input_message = {
  1. status_message : partner_integration_status_message option;
    (*

    The status message provided by the partner.

    *)
  2. status : partner_integration_status;
    (*

    The value of the updated status.

    *)
  3. partner_name : partner_integration_partner_name;
    (*

    The name of the partner whose integration status is being updated.

    *)
  4. database_name : partner_integration_database_name;
    (*

    The name of the database whose partner integration status is being updated.

    *)
  5. cluster_identifier : partner_integration_cluster_identifier;
    (*

    The cluster identifier of the cluster whose partner integration status is being updated.

    *)
  6. account_id : partner_integration_account_id;
    (*

    The Amazon Web Services account ID that owns the cluster.

    *)
}
type nonrec unsupported_operation_fault = {
  1. message : exception_message option;
}

The requested operation isn't supported.

type nonrec unauthorized_partner_integration_fault = {
  1. message : exception_message option;
}

The partner integration is not authorized.

type nonrec partner_not_found_fault = {
  1. message : exception_message option;
}

The name of the partner was not found.

type nonrec cluster_not_found_fault = {
  1. message : exception_message option;
}

The ClusterIdentifier parameter does not refer to an existing cluster.

type nonrec partner_integration_output_message = {
  1. partner_name : partner_integration_partner_name option;
    (*

    The name of the partner that is authorized to send data.

    *)
  2. database_name : partner_integration_database_name option;
    (*

    The name of the database that receives data from the partner.

    *)
}
type nonrec unsupported_option_fault = {
  1. message : exception_message option;
}

A request option was specified that is not supported.

type nonrec unknown_snapshot_copy_region_fault = {
  1. message : exception_message option;
}

The specified region is incorrect or does not exist.

type nonrec unauthorized_operation = {
  1. message : exception_message option;
}

Your account is not authorized to perform the requested operation.

type nonrec eligible_tracks_to_update_list = update_target list
type nonrec maintenance_track = {
  1. update_targets : eligible_tracks_to_update_list option;
    (*

    An array of UpdateTarget objects to update with the maintenance track.

    *)
  2. database_version : string_ option;
    (*

    The version number for the cluster release.

    *)
  3. maintenance_track_name : string_ option;
    (*

    The name of the maintenance track. Possible values are current and trailing.

    *)
}

Defines a maintenance track that determines which Amazon Redshift version to apply during a maintenance window. If the value for MaintenanceTrack is current, the cluster is updated to the most recently certified maintenance release. If the value is trailing, the cluster is updated to the previously certified maintenance release.

type nonrec track_list = maintenance_track list
type nonrec track_list_message = {
  1. marker : string_ option;
    (*

    The starting point to return a set of response tracklist records. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. maintenance_tracks : track_list option;
    (*

    A list of maintenance tracks output by the DescribeClusterTracks operation.

    *)
}
type nonrec target_arn = string
type nonrec tagged_resource = {
  1. resource_type : string_ option;
    (*

    The type of resource with which the tag is associated. Valid resource types are:

    • Cluster
    • CIDR/IP
    • EC2 security group
    • Snapshot
    • Cluster security group
    • Subnet group
    • HSM connection
    • HSM certificate
    • Parameter group

    For more information about Amazon Redshift resource types and constructing ARNs, go to Constructing an Amazon Redshift Amazon Resource Name (ARN) in the Amazon Redshift Cluster Management Guide.

    *)
  2. resource_name : string_ option;
    (*

    The Amazon Resource Name (ARN) with which the tag is associated, for example: arn:aws:redshift:us-east-2:123456789:cluster:t1.

    *)
  3. tag : tag option;
    (*

    The tag for the resource.

    *)
}

A tag and its associated resource.

type nonrec tagged_resource_list = tagged_resource list
type nonrec tagged_resource_list_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. tagged_resources : tagged_resource_list option;
    (*

    A list of tags with their associated resources.

    *)
}
type nonrec tag_value_list = string_ list
type nonrec tag_limit_exceeded_fault = {
  1. message : exception_message option;
}

You have exceeded the number of tags allowed.

type nonrec tag_key_list = string_ list
type nonrec table_restore_status_type =
  1. | CANCELED
  2. | FAILED
  3. | SUCCEEDED
  4. | IN_PROGRESS
  5. | PENDING
type nonrec t_stamp = Smaws_Lib.CoreTypes.Timestamp.t
type nonrec long_optional = Smaws_Lib.CoreTypes.Int64.t
type nonrec table_restore_status = {
  1. new_table_name : string_ option;
    (*

    The name of the table to create as a result of the table restore request.

    *)
  2. target_schema_name : string_ option;
    (*

    The name of the schema to restore the table to.

    *)
  3. target_database_name : string_ option;
    (*

    The name of the database to restore the table to.

    *)
  4. source_table_name : string_ option;
    (*

    The name of the source table being restored.

    *)
  5. source_schema_name : string_ option;
    (*

    The name of the source schema that contains the table being restored.

    *)
  6. source_database_name : string_ option;
    (*

    The name of the source database that contains the table being restored.

    *)
  7. snapshot_identifier : string_ option;
    (*

    The identifier of the snapshot that the table is being restored from.

    *)
  8. cluster_identifier : string_ option;
    (*

    The identifier of the Amazon Redshift cluster that the table is being restored to.

    *)
  9. total_data_in_mega_bytes : long_optional option;
    (*

    The total amount of data to restore to the new table, in megabytes (MB).

    *)
  10. progress_in_mega_bytes : long_optional option;
    (*

    The amount of data restored to the new table so far, in megabytes (MB).

    *)
  11. request_time : t_stamp option;
    (*

    The time that the table restore request was made, in Universal Coordinated Time (UTC).

    *)
  12. message : string_ option;
    (*

    A description of the status of the table restore request. Status values include SUCCEEDED, FAILED, CANCELED, PENDING, IN_PROGRESS.

    *)
  13. status : table_restore_status_type option;
    (*

    A value that describes the current state of the table restore request.

    Valid Values: SUCCEEDED, FAILED, CANCELED, PENDING, IN_PROGRESS

    *)
  14. table_restore_request_id : string_ option;
    (*

    The unique identifier for the table restore request.

    *)
}

Describes the status of a RestoreTableFromClusterSnapshot operation.

type nonrec table_restore_status_list = table_restore_status list
type nonrec table_restore_status_message = {
  1. marker : string_ option;
    (*

    A pagination token that can be used in a subsequent DescribeTableRestoreStatus request.

    *)
  2. table_restore_status_details : table_restore_status_list option;
    (*

    A list of status details for one or more table restore requests.

    *)
}
type nonrec table_restore_not_found_fault = {
  1. message : exception_message option;
}

The specified TableRestoreRequestId value was not found.

type nonrec table_limit_exceeded_fault = {
  1. message : exception_message option;
}

The number of tables in the cluster exceeds the limit for the requested new cluster node type.

type nonrec supported_platform = {
  1. name : string_ option;
}

A list of supported platforms for orderable clusters.

type nonrec supported_platforms_list = supported_platform list
type nonrec subscription_severity_not_found_fault = {
  1. message : exception_message option;
}

The value specified for the event severity was not one of the allowed values, or it specified a severity that does not apply to the specified source type. The allowed values are ERROR and INFO.

type nonrec subscription_not_found_fault = {
  1. message : exception_message option;
}

An Amazon Redshift event notification subscription with the specified name does not exist.

type nonrec subscription_event_id_not_found_fault = {
  1. message : exception_message option;
}

An Amazon Redshift event with the specified event ID does not exist.

type nonrec subscription_category_not_found_fault = {
  1. message : exception_message option;
}

The value specified for the event category was not one of the allowed values, or it specified a category that does not apply to the specified source type. The allowed values are Configuration, Management, Monitoring, and Security.

type nonrec subscription_already_exist_fault = {
  1. message : exception_message option;
}

There is already an existing event notification subscription with the specified name.

type nonrec availability_zone = {
  1. supported_platforms : supported_platforms_list option;
  2. name : string_ option;
    (*

    The name of the availability zone.

    *)
}

Describes an availability zone.

type nonrec subnet = {
  1. subnet_status : string_ option;
    (*

    The status of the subnet.

    *)
  2. subnet_availability_zone : availability_zone option;
  3. subnet_identifier : string_ option;
    (*

    The identifier of the subnet.

    *)
}

Describes a subnet.

type nonrec subnet_list = subnet list
type nonrec subnet_identifier_list = string_ list
type nonrec subnet_already_in_use = {
  1. message : exception_message option;
}

A specified subnet is already in use by another cluster.

type nonrec source_type =
  1. | Scheduled_action
  2. | Cluster_snapshot
  3. | Cluster_security_group
  4. | Cluster_parameter_group
  5. | Cluster
type nonrec source_not_found_fault = {
  1. message : exception_message option;
}

The specified Amazon Redshift event source could not be found.

type nonrec source_ids_list = string_ list
type nonrec source_arn = string
type nonrec sort_by_order =
  1. | DESCENDING
  2. | ASCENDING
type nonrec snapshot_attribute_to_sort_by =
  1. | CREATE_TIME
  2. | TOTAL_SIZE
  3. | SOURCE_TYPE
type nonrec snapshot_sorting_entity = {
  1. sort_order : sort_by_order option;
    (*

    The order for listing the attributes.

    *)
  2. attribute : snapshot_attribute_to_sort_by;
    (*

    The category for sorting the snapshots.

    *)
}

Describes a sorting entity

type nonrec snapshot_sorting_entity_list = snapshot_sorting_entity list
type nonrec snapshot_schedule_update_in_progress_fault = {
  1. message : exception_message option;
}

The specified snapshot schedule is already being updated.

type nonrec snapshot_schedule_quota_exceeded_fault = {
  1. message : exception_message option;
}

You have exceeded the quota of snapshot schedules.

type nonrec snapshot_schedule_not_found_fault = {
  1. message : exception_message option;
}

We could not find the specified snapshot schedule.

type nonrec schedule_definition_list = string_ list
type nonrec scheduled_snapshot_time_list = t_stamp list
type nonrec integer_optional = int
type nonrec schedule_state =
  1. | FAILED
  2. | ACTIVE
  3. | MODIFYING
type nonrec cluster_associated_to_schedule = {
  1. schedule_association_state : schedule_state option;
  2. cluster_identifier : string_ option;
}
type nonrec associated_cluster_list = cluster_associated_to_schedule list
type nonrec snapshot_schedule = {
  1. associated_clusters : associated_cluster_list option;
    (*

    A list of clusters associated with the schedule. A maximum of 100 clusters is returned.

    *)
  2. associated_cluster_count : integer_optional option;
    (*

    The number of clusters associated with the schedule.

    *)
  3. next_invocations : scheduled_snapshot_time_list option;
  4. tags : tag_list option;
    (*

    An optional set of tags describing the schedule.

    *)
  5. schedule_description : string_ option;
    (*

    The description of the schedule.

    *)
  6. schedule_identifier : string_ option;
    (*

    A unique identifier for the schedule.

    *)
  7. schedule_definitions : schedule_definition_list option;
    (*

    A list of ScheduleDefinitions.

    *)
}

Describes a snapshot schedule. You can set a regular interval for creating snapshots of a cluster. You can also schedule snapshots for specific dates.

type nonrec snapshot_schedule_list = snapshot_schedule list
type nonrec snapshot_schedule_already_exists_fault = {
  1. message : exception_message option;
}

The specified snapshot schedule already exists.

type nonrec integer = int
type nonrec boolean_ = bool
type nonrec account_with_restore_access = {
  1. account_alias : string_ option;
    (*

    The identifier of an Amazon Web Services support account authorized to restore a snapshot. For Amazon Web Services Support, the identifier is amazon-redshift-support.

    *)
  2. account_id : string_ option;
    (*

    The identifier of an Amazon Web Services account authorized to restore a snapshot.

    *)
}

Describes an Amazon Web Services account authorized to restore a snapshot.

type nonrec accounts_with_restore_access_list = account_with_restore_access list
type nonrec double = float
type nonrec restorable_node_type_list = string_ list
type nonrec snapshot = {
  1. snapshot_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the snapshot.

    *)
  2. master_password_secret_kms_key_id : string_ option;
    (*

    The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.

    *)
  3. master_password_secret_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the cluster's admin user credentials secret.

    *)
  4. snapshot_retention_start_time : t_stamp option;
    (*

    A timestamp representing the start of the retention period for the snapshot.

    *)
  5. manual_snapshot_remaining_days : integer_optional option;
    (*

    The number of days until a manual snapshot will pass its retention period.

    *)
  6. manual_snapshot_retention_period : integer_optional option;
    (*

    The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  7. maintenance_track_name : string_ option;
    (*

    The name of the maintenance track for the snapshot.

    *)
  8. enhanced_vpc_routing : boolean_ option;
    (*

    An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

    If this option is true, enhanced VPC routing is enabled.

    Default: false

    *)
  9. restorable_node_types : restorable_node_type_list option;
    (*

    The list of node types that this cluster snapshot is able to restore into.

    *)
  10. tags : tag_list option;
    (*

    The list of tags for the cluster snapshot.

    *)
  11. source_region : string_ option;
    (*

    The source region from which the snapshot was copied.

    *)
  12. elapsed_time_in_seconds : long option;
    (*

    The amount of time an in-progress snapshot backup has been running, or the amount of time it took a completed backup to finish.

    *)
  13. estimated_seconds_to_completion : long option;
    (*

    The estimate of the time remaining before the snapshot backup will complete. Returns 0 for a completed backup.

    *)
  14. current_backup_rate_in_mega_bytes_per_second : double option;
    (*

    The number of megabytes per second being transferred to the snapshot backup. Returns 0 for a completed backup.

    *)
  15. backup_progress_in_mega_bytes : double option;
    (*

    The number of megabytes that have been transferred to the snapshot backup.

    *)
  16. actual_incremental_backup_size_in_mega_bytes : double option;
    (*

    The size of the incremental backup.

    *)
  17. total_backup_size_in_mega_bytes : double option;
    (*

    The size of the complete set of backup data that would be used to restore the cluster.

    *)
  18. owner_account : string_ option;
    (*

    For manual snapshots, the Amazon Web Services account used to create or copy the snapshot. For automatic snapshots, the owner of the cluster. The owner can perform all snapshot actions, such as sharing a manual snapshot.

    *)
  19. accounts_with_restore_access : accounts_with_restore_access_list option;
    (*

    A list of the Amazon Web Services accounts authorized to restore the snapshot. Returns null if no accounts are authorized. Visible only to the snapshot owner.

    *)
  20. encrypted_with_hs_m : boolean_ option;
    (*

    A boolean that indicates whether the snapshot data is encrypted using the HSM keys of the source cluster. true indicates that the data is encrypted using HSM keys.

    *)
  21. kms_key_id : string_ option;
    (*

    The Key Management Service (KMS) key ID of the encryption key that was used to encrypt data in the cluster from which the snapshot was taken.

    *)
  22. encrypted : boolean_ option;
    (*

    If true, the data in the snapshot is encrypted at rest.

    *)
  23. vpc_id : string_ option;
    (*

    The VPC identifier of the cluster if the snapshot is from a cluster in a VPC. Otherwise, this field is not in the output.

    *)
  24. db_name : string_ option;
    (*

    The name of the database that was created when the cluster was created.

    *)
  25. number_of_nodes : integer option;
    (*

    The number of nodes in the cluster.

    *)
  26. node_type : string_ option;
    (*

    The node type of the nodes in the cluster.

    *)
  27. snapshot_type : string_ option;
    (*

    The snapshot type. Snapshots created using CreateClusterSnapshot and CopyClusterSnapshot are of type "manual".

    *)
  28. engine_full_version : string_ option;
    (*

    The cluster version of the cluster used to create the snapshot. For example, 1.0.15503.

    *)
  29. cluster_version : string_ option;
    (*

    The version ID of the Amazon Redshift engine that is running on the cluster.

    *)
  30. master_username : string_ option;
    (*

    The admin user name for the cluster.

    *)
  31. cluster_create_time : t_stamp option;
    (*

    The time (UTC) when the cluster was originally created.

    *)
  32. availability_zone : string_ option;
    (*

    The Availability Zone in which the cluster was created.

    *)
  33. port : integer option;
    (*

    The port that the cluster is listening on.

    *)
  34. status : string_ option;
    (*

    The snapshot status. The value of the status depends on the API operation used:

    • CreateClusterSnapshot and CopyClusterSnapshot returns status as "creating".
    • DescribeClusterSnapshots returns status as "creating", "available", "final snapshot", or "failed".
    • DeleteClusterSnapshot returns status as "deleted".
    *)
  35. snapshot_create_time : t_stamp option;
    (*

    The time (in UTC format) when Amazon Redshift began the snapshot. A snapshot contains a copy of the cluster data as of this exact time.

    *)
  36. cluster_identifier : string_ option;
    (*

    The identifier of the cluster for which the snapshot was taken.

    *)
  37. snapshot_identifier : string_ option;
    (*

    The snapshot identifier that is provided in the request.

    *)
}

Describes a snapshot.

type nonrec snapshot_list = snapshot list
type nonrec snapshot_message = {
  1. snapshots : snapshot_list option;
    (*

    A list of Snapshot instances.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}

Contains the output from the DescribeClusterSnapshots action.

type nonrec snapshot_identifier_list = string_ list
type nonrec snapshot_error_message = {
  1. failure_reason : string_ option;
    (*

    The text message describing the error.

    *)
  2. failure_code : string_ option;
    (*

    The failure code for the error.

    *)
  3. snapshot_cluster_identifier : string_ option;
    (*

    A unique identifier for the cluster.

    *)
  4. snapshot_identifier : string_ option;
    (*

    A unique identifier for the snapshot returning the error.

    *)
}

Describes the errors returned by a snapshot.

type nonrec snapshot_copy_grant_quota_exceeded_fault = {
  1. message : exception_message option;
}

The Amazon Web Services account has exceeded the maximum number of snapshot copy grants in this region.

type nonrec snapshot_copy_grant_not_found_fault = {
  1. message : exception_message option;
}

The specified snapshot copy grant can't be found. Make sure that the name is typed correctly and that the grant exists in the destination region.

type nonrec snapshot_copy_grant = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. kms_key_id : string_ option;
    (*

    The unique identifier of the encrypted symmetric key in Amazon Web Services KMS to which Amazon Redshift is granted permission.

    *)
  3. snapshot_copy_grant_name : string_ option;
    (*

    The name of the snapshot copy grant.

    *)
}

The snapshot copy grant that grants Amazon Redshift permission to encrypt copied snapshots with the specified encrypted symmetric key from Amazon Web Services KMS in the destination region.

For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide.

type nonrec snapshot_copy_grant_list = snapshot_copy_grant list
type nonrec snapshot_copy_grant_message = {
  1. snapshot_copy_grants : snapshot_copy_grant_list option;
    (*

    The list of SnapshotCopyGrant objects.

    *)
  2. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeSnapshotCopyGrant request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    Constraints: You can specify either the SnapshotCopyGrantName parameter or the Marker parameter, but not both.

    *)
}
type nonrec snapshot_copy_grant_already_exists_fault = {
  1. message : exception_message option;
}

The snapshot copy grant can't be created because a grant with the same name already exists.

type nonrec snapshot_copy_disabled_fault = {
  1. message : exception_message option;
}

Cross-region snapshot copy was temporarily disabled. Try your request again.

type nonrec snapshot_copy_already_enabled_fault = {
  1. message : exception_message option;
}

The cluster already has cross-region snapshot copy enabled.

type nonrec snapshot_copy_already_disabled_fault = {
  1. message : exception_message option;
}

The cluster already has cross-region snapshot copy disabled.

type nonrec service_authorization =
  1. | DISABLED
  2. | ENABLED
type nonrec lake_formation_query = {
  1. authorization : service_authorization;
    (*

    Determines whether the query scope is enabled or disabled.

    *)
}

The Lake Formation scope.

type nonrec lake_formation_scope_union =
  1. | LakeFormationQuery of lake_formation_query
    (*

    The Lake Formation scope.

    *)

A list of scopes set up for Lake Formation integration.

type nonrec lake_formation_service_integrations = lake_formation_scope_union list
type nonrec read_write_access = {
  1. authorization : service_authorization;
    (*

    Determines whether the read/write scope is enabled or disabled.

    *)
}

The S3 Access Grants scope.

type nonrec s3_access_grants_scope_union =
  1. | ReadWriteAccess of read_write_access
    (*

    The S3 Access Grants scope.

    *)

A list of scopes set up for S3 Access Grants integration.

type nonrec s3_access_grants_service_integrations = s3_access_grants_scope_union list
type nonrec connect = {
  1. authorization : service_authorization;
    (*

    Determines whether the Amazon Redshift connect integration is enabled or disabled for the application.

    *)
}

A structure that defines the Amazon Redshift connect service integration scope.

type nonrec redshift_scope_union =
  1. | Connect of connect
    (*

    The Amazon Redshift connect integration scope configuration. Defines authorization settings for Amazon Redshift connect service integration.

    *)

A union structure that defines the scope of Amazon Redshift service integrations. Contains configuration for different integration types such as Amazon Redshift.

type nonrec redshift_service_integrations = redshift_scope_union list
type nonrec service_integrations_union =
  1. | Redshift of redshift_service_integrations
    (*

    A list of scopes set up for Amazon Redshift integration.

    *)
  2. | S3AccessGrants of s3_access_grants_service_integrations
    (*

    A list of scopes set up for S3 Access Grants integration.

    *)
  3. | LakeFormation of lake_formation_service_integrations
    (*

    A list of scopes set up for Lake Formation integration.

    *)

A list of service integrations.

type nonrec service_integration_list = service_integrations_union list
type nonrec serverless_identifier = {
  1. workgroup_identifier : string_;
    (*

    The unique identifier for the workgroup associated with the serverless namespace.

    *)
  2. namespace_identifier : string_;
    (*

    The unique identifier for the serverless namespace.

    *)
}

The identifier for a serverless namespace.

type nonrec sensitive_string = string
type nonrec cluster_node = {
  1. public_ip_address : string_ option;
    (*

    The public IP address of a node within a cluster.

    *)
  2. private_ip_address : string_ option;
    (*

    The private IP address of a node within a cluster.

    *)
  3. node_role : string_ option;
    (*

    Whether the node is a leader node or a compute node.

    *)
}

The identifier of a node in a cluster.

type nonrec cluster_nodes_list = cluster_node list
type nonrec secondary_cluster_info = {
  1. cluster_nodes : cluster_nodes_list option;
    (*

    The nodes in the secondary compute unit.

    *)
  2. availability_zone : string_ option;
    (*

    The name of the Availability Zone in which the secondary compute unit of the cluster is located.

    *)
}

The AvailabilityZone and ClusterNodes information of the secondary compute unit.

type nonrec boolean_optional = bool
type nonrec resize_cluster_message = {
  1. target_reserved_node_offering_id : string_ option;
    (*

    The identifier of the target reserved node offering.

    *)
  2. reserved_node_id : string_ option;
    (*

    The identifier of the reserved node.

    *)
  3. classic : boolean_optional option;
    (*

    A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false, the resize type is elastic.

    *)
  4. number_of_nodes : integer_optional option;
    (*

    The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

    *)
  5. node_type : string_ option;
    (*

    The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

    *)
  6. cluster_type : string_ option;
    (*

    The new cluster type for the specified cluster.

    *)
  7. cluster_identifier : string_;
    (*

    The unique identifier for the cluster to resize.

    *)
}

Describes a resize cluster operation. For example, a scheduled action to run the ResizeCluster API operation.

type nonrec pause_cluster_message = {
  1. cluster_identifier : string_;
    (*

    The identifier of the cluster to be paused.

    *)
}

Describes a pause cluster operation. For example, a scheduled action to run the PauseCluster API operation.

type nonrec resume_cluster_message = {
  1. cluster_identifier : string_;
    (*

    The identifier of the cluster to be resumed.

    *)
}

Describes a resume cluster operation. For example, a scheduled action to run the ResumeCluster API operation.

type nonrec scheduled_action_type = {
  1. resume_cluster : resume_cluster_message option;
    (*

    An action that runs a ResumeCluster API operation.

    *)
  2. pause_cluster : pause_cluster_message option;
    (*

    An action that runs a PauseCluster API operation.

    *)
  3. resize_cluster : resize_cluster_message option;
    (*

    An action that runs a ResizeCluster API operation.

    *)
}

The action type that specifies an Amazon Redshift API operation that is supported by the Amazon Redshift scheduler.

type nonrec scheduled_action_state =
  1. | DISABLED
  2. | ACTIVE
type nonrec scheduled_action_time_list = t_stamp list
type nonrec scheduled_action = {
  1. end_time : t_stamp option;
    (*

    The end time in UTC when the schedule is no longer active. After this time, the scheduled action does not trigger.

    *)
  2. start_time : t_stamp option;
    (*

    The start time in UTC when the schedule is active. Before this time, the scheduled action does not trigger.

    *)
  3. next_invocations : scheduled_action_time_list option;
    (*

    List of times when the scheduled action will run.

    *)
  4. state : scheduled_action_state option;
    (*

    The state of the scheduled action. For example, DISABLED.

    *)
  5. scheduled_action_description : string_ option;
    (*

    The description of the scheduled action.

    *)
  6. iam_role : string_ option;
    (*

    The IAM role to assume to run the scheduled action. This IAM role must have permission to run the Amazon Redshift API operation in the scheduled action. This IAM role must allow the Amazon Redshift scheduler (Principal scheduler.redshift.amazonaws.com) to assume permissions on your behalf. For more information about the IAM role to use with the Amazon Redshift scheduler, see Using Identity-Based Policies for Amazon Redshift in the Amazon Redshift Cluster Management Guide.

    *)
  7. schedule : string_ option;
    (*

    The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour.

    Format of at expressions is "at(yyyy-mm-ddThh:mm:ss)". For example, "at(2016-03-04T17:27:00)".

    Format of cron expressions is "cron(Minutes Hours Day-of-month Month Day-of-week Year)". For example, "cron(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.

    *)
  8. target_action : scheduled_action_type option;
    (*

    A JSON format string of the Amazon Redshift API operation with input parameters.

    "{\"ResizeCluster\":{\"NodeType\":\"ra3.4xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}}".

    *)
  9. scheduled_action_name : string_ option;
    (*

    The name of the scheduled action.

    *)
}

Describes a scheduled action. You can use a scheduled action to trigger some Amazon Redshift API operations on a schedule. For information about which API operations can be scheduled, see ScheduledActionType.

type nonrec scheduled_action_list = scheduled_action list
type nonrec scheduled_actions_message = {
  1. scheduled_actions : scheduled_action_list option;
    (*

    List of retrieved scheduled actions.

    *)
  2. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
}
type nonrec scheduled_action_type_values =
  1. | RESUME_CLUSTER
  2. | PAUSE_CLUSTER
  3. | RESIZE_CLUSTER
type nonrec scheduled_action_type_unsupported_fault = {
  1. message : exception_message option;
}

The action type specified for a scheduled action is not supported.

type nonrec scheduled_action_quota_exceeded_fault = {
  1. message : exception_message option;
}

The quota for scheduled actions exceeded.

type nonrec scheduled_action_not_found_fault = {
  1. message : exception_message option;
}

The scheduled action cannot be found.

type nonrec scheduled_action_filter_name =
  1. | IAM_ROLE
  2. | CLUSTER_IDENTIFIER
type nonrec scheduled_action_filter = {
  1. values : value_string_list;
    (*

    List of values. Compare if the value (of type defined by Name) equals an item in the list of scheduled actions.

    *)
  2. name : scheduled_action_filter_name;
    (*

    The type of element to filter.

    *)
}

A set of elements to filter the returned scheduled actions.

type nonrec scheduled_action_filter_list = scheduled_action_filter list
type nonrec scheduled_action_already_exists_fault = {
  1. message : exception_message option;
}

The scheduled action already exists.

type nonrec schedule_definition_type_unsupported_fault = {
  1. message : exception_message option;
}

The definition you submitted is not supported.

type nonrec sns_topic_arn_not_found_fault = {
  1. message : exception_message option;
}

An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not exist.

type nonrec sns_no_authorization_fault = {
  1. message : exception_message option;
}

You do not have permission to publish to the specified Amazon SNS topic.

type nonrec sns_invalid_topic_fault = {
  1. message : exception_message option;
}

Amazon SNS has responded that there is a problem with the specified Amazon SNS topic.

type nonrec s3_key_prefix_value = string
type nonrec endpoint = {
  1. vpc_endpoints : vpc_endpoints_list option;
    (*

    Describes a connection endpoint.

    *)
  2. port : integer option;
    (*

    The port that the database engine is listening on.

    *)
  3. address : string_ option;
    (*

    The DNS address of the Cluster.

    *)
}

Describes a connection endpoint.

type nonrec cluster_security_group_membership = {
  1. status : string_ option;
    (*

    The status of the cluster security group.

    *)
  2. cluster_security_group_name : string_ option;
    (*

    The name of the cluster security group.

    *)
}

Describes a cluster security group.

type nonrec cluster_security_group_membership_list = cluster_security_group_membership list
type nonrec cluster_parameter_status = {
  1. parameter_apply_error_description : string_ option;
    (*

    The error that prevented the parameter from being applied to the database.

    *)
  2. parameter_apply_status : string_ option;
    (*

    The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

    The following are possible statuses and descriptions.

    • in-sync: The parameter value is in sync with the database.
    • pending-reboot: The parameter value will be applied after the cluster reboots.
    • applying: The parameter value is being applied to the database.
    • invalid-parameter: Cannot apply the parameter value because it has an invalid value or syntax.
    • apply-deferred: The parameter contains static property changes. The changes are deferred until the cluster reboots.
    • apply-error: Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.
    • unknown-error: Cannot apply the parameter change right now. The change will be applied after the cluster reboots.
    *)
  3. parameter_name : string_ option;
    (*

    The name of the parameter.

    *)
}

Describes the status of a parameter group.

type nonrec cluster_parameter_status_list = cluster_parameter_status list
type nonrec cluster_parameter_group_status = {
  1. cluster_parameter_status_list : cluster_parameter_status_list option;
    (*

    The list of parameter statuses.

    For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.

    *)
  2. parameter_apply_status : string_ option;
    (*

    The status of parameter updates.

    *)
  3. parameter_group_name : string_ option;
    (*

    The name of the cluster parameter group.

    *)
}

Describes the status of a parameter group.

type nonrec cluster_parameter_group_status_list = cluster_parameter_group_status list
type nonrec pending_modified_values = {
  1. encryption_type : string_ option;
    (*

    The encryption type for a cluster. Possible values are: KMS and None.

    *)
  2. maintenance_track_name : string_ option;
    (*

    The name of the maintenance track that the cluster will change to during the next maintenance window.

    *)
  3. enhanced_vpc_routing : boolean_optional option;
    (*

    An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

    If this option is true, enhanced VPC routing is enabled.

    Default: false

    *)
  4. publicly_accessible : boolean_optional option;
    (*

    The pending or in-progress change of the ability to connect to the cluster from the public network.

    *)
  5. cluster_identifier : string_ option;
    (*

    The pending or in-progress change of the new identifier for the cluster.

    *)
  6. automated_snapshot_retention_period : integer_optional option;
    (*

    The pending or in-progress change of the automated snapshot retention period.

    *)
  7. cluster_version : string_ option;
    (*

    The pending or in-progress change of the service version.

    *)
  8. cluster_type : string_ option;
    (*

    The pending or in-progress change of the cluster type.

    *)
  9. number_of_nodes : integer_optional option;
    (*

    The pending or in-progress change of the number of nodes in the cluster.

    *)
  10. node_type : string_ option;
    (*

    The pending or in-progress change of the cluster's node type.

    *)
  11. master_user_password : sensitive_string option;
    (*

    The pending or in-progress change of the admin user password for the cluster.

    *)
}

Describes cluster attributes that are in a pending state. A change to one or more the attributes was requested and is in progress or will be applied.

type nonrec restore_status = {
  1. estimated_time_to_completion_in_seconds : long option;
    (*

    The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 node types.

    *)
  2. elapsed_time_in_seconds : long option;
    (*

    The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 node types.

    *)
  3. progress_in_mega_bytes : long option;
    (*

    The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 node types.

    *)
  4. snapshot_size_in_mega_bytes : long option;
    (*

    The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 node types.

    *)
  5. current_restore_rate_in_mega_bytes_per_second : double option;
    (*

    The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 node types.

    *)
  6. status : string_ option;
    (*

    The status of the restore action. Returns starting, restoring, completed, or failed.

    *)
}

Describes the status of a cluster restore action. Returns null if the cluster was not created by restoring a snapshot.

type nonrec double_optional = float
type nonrec data_transfer_progress = {
  1. elapsed_time_in_seconds : long_optional option;
    (*

    Describes the number of seconds that have elapsed during the data transfer.

    *)
  2. estimated_time_to_completion_in_seconds : long_optional option;
    (*

    Describes the estimated number of seconds remaining to complete the transfer.

    *)
  3. data_transferred_in_mega_bytes : long option;
    (*

    Describes the total amount of data that has been transfered in MB's.

    *)
  4. total_data_in_mega_bytes : long option;
    (*

    Describes the total amount of data to be transfered in megabytes.

    *)
  5. current_rate_in_mega_bytes_per_second : double_optional option;
    (*

    Describes the data transfer rate in MB's per second.

    *)
  6. status : string_ option;
    (*

    Describes the status of the cluster. While the transfer is in progress the status is transferringdata.

    *)
}

Describes the status of a cluster while it is in the process of resizing with an incremental resize.

type nonrec hsm_status = {
  1. status : string_ option;
    (*

    Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

    Values: active, applying

    *)
  2. hsm_configuration_identifier : string_ option;
    (*

    Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

    *)
  3. hsm_client_certificate_identifier : string_ option;
    (*

    Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

    *)
}

Describes the status of changes to HSM settings.

type nonrec cluster_snapshot_copy_status = {
  1. snapshot_copy_grant_name : string_ option;
    (*

    The name of the snapshot copy grant.

    *)
  2. manual_snapshot_retention_period : integer option;
    (*

    The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  3. retention_period : long option;
    (*

    The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

    *)
  4. destination_region : string_ option;
    (*

    The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

    *)
}

Returns the destination region and retention period that are configured for cross-region snapshot copy.

type nonrec elastic_ip_status = {
  1. status : string_ option;
    (*

    The status of the elastic IP (EIP) address.

    *)
  2. elastic_ip : string_ option;
    (*

    The elastic IP (EIP) address for the cluster.

    *)
}

Describes the status of the elastic IP (EIP) address.

type nonrec cluster_iam_role = {
  1. apply_status : string_ option;
    (*

    A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

    The following are possible statuses and descriptions.

    • in-sync: The role is available for use by the cluster.
    • adding: The role is in the process of being associated with the cluster.
    • removing: The role is in the process of being disassociated with the cluster.
    *)
  2. iam_role_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload.

    *)
}

An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

type nonrec cluster_iam_role_list = cluster_iam_role list
type nonrec pending_actions_list = string_ list
type nonrec deferred_maintenance_window = {
  1. defer_maintenance_end_time : t_stamp option;
    (*

    A timestamp for the end of the time period when we defer maintenance.

    *)
  2. defer_maintenance_start_time : t_stamp option;
    (*

    A timestamp for the beginning of the time period when we defer maintenance.

    *)
  3. defer_maintenance_identifier : string_ option;
    (*

    A unique identifier for the maintenance window.

    *)
}

Describes a deferred maintenance window

type nonrec deferred_maintenance_windows_list = deferred_maintenance_window list
type nonrec resize_info = {
  1. allow_cancel_resize : boolean_ option;
    (*

    A boolean value indicating if the resize operation can be cancelled.

    *)
  2. resize_type : string_ option;
    (*

    Returns the value ClassicResize.

    *)
}

Describes a resize operation.

type nonrec aqua_status =
  1. | APPLYING
  2. | DISABLED
  3. | ENABLED
type nonrec aqua_configuration_status =
  1. | AUTO
  2. | DISABLED
  3. | ENABLED
type nonrec aqua_configuration = {
  1. aqua_configuration_status : aqua_configuration_status option;
    (*

    This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
  2. aqua_status : aqua_status option;
    (*

    This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
}

The operation that uses this structure is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

type nonrec reserved_node_exchange_status_type =
  1. | FAILED
  2. | SUCCEEDED
  3. | RETRYING
  4. | IN_PROGRESS
  5. | PENDING
  6. | REQUESTED
type nonrec reserved_node_exchange_status = {
  1. target_reserved_node_count : integer option;
    (*

    The count of target reserved nodes in the cluster.

    *)
  2. target_reserved_node_type : string_ option;
    (*

    The node type of the target reserved node, for example ra3.4xlarge.

    *)
  3. target_reserved_node_offering_id : string_ option;
    (*

    The identifier of the target reserved node offering.

    *)
  4. source_reserved_node_count : integer option;
    (*

    The source reserved-node count in the cluster.

    *)
  5. source_reserved_node_type : string_ option;
    (*

    The source reserved-node type, for example ra3.4xlarge.

    *)
  6. source_reserved_node_id : string_ option;
    (*

    The identifier of the source reserved node.

    *)
  7. request_time : t_stamp option;
    (*

    A date and time that indicate when the reserved-node exchange was requested.

    *)
  8. status : reserved_node_exchange_status_type option;
    (*

    The status of the reserved-node exchange request. Statuses include in-progress and requested.

    *)
  9. reserved_node_exchange_request_id : string_ option;
    (*

    The identifier of the reserved-node exchange request.

    *)
}

Reserved-node status details, such as the source reserved-node identifier, the target reserved-node identifier, the node type, the node count, and other details.

type nonrec cluster = {
  1. extra_compute_for_automatic_optimization : string_ option;
    (*

    A boolean value that, if true, indicates that the cluster allocates additional compute resources to run automatic optimization operations.

    Default: false

    *)
  2. catalog_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the Glue data catalog associated with the cluster enabled with Amazon Redshift federated permissions.

    *)
  3. lakehouse_registration_status : string_ option;
    (*

    The status of the lakehouse registration for the cluster. Indicates whether the cluster is successfully registered with Amazon Redshift federated permissions.

    *)
  4. multi_az_secondary : secondary_cluster_info option;
    (*

    The secondary compute unit of a cluster, if Multi-AZ deployment is turned on.

    *)
  5. multi_a_z : string_ option;
    (*

    A boolean value that, if true, indicates that the cluster is deployed in two Availability Zones.

    *)
  6. ip_address_type : string_ option;
    (*

    The IP address type for the cluster. Possible values are ipv4 and dualstack.

    *)
  7. master_password_secret_kms_key_id : string_ option;
    (*

    The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.

    *)
  8. master_password_secret_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the cluster's admin user credentials secret.

    *)
  9. custom_domain_certificate_expiry_date : t_stamp option;
    (*

    The expiration date for the certificate associated with the custom domain name.

    *)
  10. custom_domain_certificate_arn : string_ option;
    (*

    The certificate Amazon Resource Name (ARN) for the custom domain name.

    *)
  11. custom_domain_name : string_ option;
    (*

    The custom domain name associated with the cluster.

    *)
  12. reserved_node_exchange_status : reserved_node_exchange_status option;
    (*

    The status of the reserved-node exchange request. Statuses include in-progress and requested.

    *)
  13. default_iam_role_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

    *)
  14. aqua_configuration : aqua_configuration option;
    (*

    This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
  15. total_storage_capacity_in_mega_bytes : long_optional option;
    (*

    The total storage capacity of the cluster in megabytes.

    *)
  16. cluster_namespace_arn : string_ option;
    (*

    The namespace Amazon Resource Name (ARN) of the cluster.

    *)
  17. availability_zone_relocation_status : string_ option;
    (*

    Describes the status of the Availability Zone relocation operation.

    *)
  18. resize_info : resize_info option;
    (*

    Returns the following:

    • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.
    • ResizeType: Returns ClassicResize
    *)
  19. next_maintenance_window_start_time : t_stamp option;
    (*

    The date and time in UTC when system maintenance can begin.

    *)
  20. expected_next_snapshot_schedule_time_status : string_ option;
    (*

    The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

    • OnTrack - The next snapshot is expected to be taken on time.
    • Pending - The next snapshot is pending to be taken.
    *)
  21. expected_next_snapshot_schedule_time : t_stamp option;
    (*

    The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

    *)
  22. snapshot_schedule_state : schedule_state option;
    (*

    The current state of the cluster snapshot schedule.

    *)
  23. snapshot_schedule_identifier : string_ option;
    (*

    A unique identifier for the cluster snapshot schedule.

    *)
  24. deferred_maintenance_windows : deferred_maintenance_windows_list option;
    (*

    Describes a group of DeferredMaintenanceWindow objects.

    *)
  25. elastic_resize_number_of_node_options : string_ option;
    (*

    The number of nodes that you can resize the cluster to with the elastic resize method.

    *)
  26. maintenance_track_name : string_ option;
    (*

    The name of the maintenance track for the cluster.

    *)
  27. pending_actions : pending_actions_list option;
    (*

    Cluster operations that are waiting to be started.

    *)
  28. iam_roles : cluster_iam_role_list option;
    (*

    A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

    *)
  29. enhanced_vpc_routing : boolean_ option;
    (*

    An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

    If this option is true, enhanced VPC routing is enabled.

    Default: false

    *)
  30. kms_key_id : string_ option;
    (*

    The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

    *)
  31. tags : tag_list option;
    (*

    The list of tags for the cluster.

    *)
  32. cluster_revision_number : string_ option;
    (*

    The specific revision number of the database in the cluster.

    *)
  33. elastic_ip_status : elastic_ip_status option;
    (*

    The status of the elastic IP (EIP) address.

    *)
  34. cluster_nodes : cluster_nodes_list option;
    (*

    The nodes in the cluster.

    *)
  35. cluster_public_key : string_ option;
    (*

    The public key for the cluster.

    *)
  36. cluster_snapshot_copy_status : cluster_snapshot_copy_status option;
    (*

    A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

    *)
  37. hsm_status : hsm_status option;
    (*

    A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

    Values: active, applying

    *)
  38. data_transfer_progress : data_transfer_progress option;
  39. restore_status : restore_status option;
    (*

    A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

    *)
  40. encrypted : boolean_ option;
    (*

    A boolean value that, if true, indicates that data in the cluster is encrypted at rest.

    *)
  41. publicly_accessible : boolean_ option;
    (*

    A boolean value that, if true, indicates that the cluster can be accessed from a public network.

    Default: false

    *)
  42. number_of_nodes : integer option;
    (*

    The number of compute nodes in the cluster.

    *)
  43. allow_version_upgrade : boolean_ option;
    (*

    A boolean value that, if true, indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

    *)
  44. cluster_version : string_ option;
    (*

    The version ID of the Amazon Redshift engine that is running on the cluster.

    *)
  45. pending_modified_values : pending_modified_values option;
    (*

    A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

    *)
  46. preferred_maintenance_window : string_ option;
    (*

    The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

    *)
  47. availability_zone : string_ option;
    (*

    The name of the Availability Zone in which the cluster is located.

    *)
  48. vpc_id : string_ option;
    (*

    The identifier of the VPC the cluster is in, if the cluster is in a VPC.

    *)
  49. cluster_subnet_group_name : string_ option;
    (*

    The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

    *)
  50. cluster_parameter_groups : cluster_parameter_group_status_list option;
    (*

    The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

    *)
  51. vpc_security_groups : vpc_security_group_membership_list option;
    (*

    A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

    *)
  52. cluster_security_groups : cluster_security_group_membership_list option;
    (*

    A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

    Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

    *)
  53. manual_snapshot_retention_period : integer option;
    (*

    The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  54. automated_snapshot_retention_period : integer option;
    (*

    The number of days that automatic cluster snapshots are retained.

    *)
  55. cluster_create_time : t_stamp option;
    (*

    The date and time that the cluster was created.

    *)
  56. endpoint : endpoint option;
    (*

    The connection endpoint.

    *)
  57. db_name : string_ option;
    (*

    The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named devdev was created by default.

    *)
  58. master_username : string_ option;
    (*

    The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

    *)
  59. modify_status : string_ option;
    (*

    The status of a modify operation, if any, initiated for the cluster.

    *)
  60. cluster_availability_status : string_ option;
    (*

    The availability status of the cluster for queries. Possible values are the following:

    • Available - The cluster is available for queries.
    • Unavailable - The cluster is not available for queries.
    • Maintenance - The cluster is intermittently available for queries due to maintenance activities.
    • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.
    • Failed - The cluster failed and is not available for queries.
    *)
  61. cluster_status : string_ option;
    (*

    The current state of the cluster. Possible values are the following:

    • available
    • available, prep-for-resize
    • available, resize-cleanup
    • cancelling-resize
    • creating
    • deleting
    • final-snapshot
    • hardware-failure
    • incompatible-hsm
    • incompatible-network
    • incompatible-parameters
    • incompatible-restore
    • modifying
    • paused
    • rebooting
    • renaming
    • resizing
    • rotating-keys
    • storage-full
    • updating-hsm
    *)
  62. node_type : string_ option;
    (*

    The node type for the nodes in the cluster.

    *)
  63. cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster.

    *)
}

Describes a cluster.

type nonrec rotate_encryption_key_result = {
  1. cluster : cluster option;
}
type nonrec rotate_encryption_key_message = {
  1. cluster_identifier : string_;
    (*

    The unique identifier of the cluster that you want to rotate the encryption keys for.

    Constraints: Must be the name of valid cluster that has encryption enabled.

    *)
}
type nonrec invalid_cluster_state_fault = {
  1. message : exception_message option;
}

The specified cluster is not in the available state.

type nonrec dependent_service_request_throttling_fault = {
  1. message : exception_message option;
}

The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.

type nonrec revoke_snapshot_access_result = {
  1. snapshot : snapshot option;
}
type nonrec revoke_snapshot_access_message = {
  1. account_with_restore_access : string_;
    (*

    The identifier of the Amazon Web Services account that can no longer restore the specified snapshot.

    *)
  2. snapshot_cluster_identifier : string_ option;
    (*

    The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

    *)
  3. snapshot_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the snapshot associated with the message to revoke access.

    *)
  4. snapshot_identifier : string_ option;
    (*

    The identifier of the snapshot that the account can no longer access.

    *)
}
type nonrec cluster_snapshot_not_found_fault = {
  1. message : exception_message option;
}

The snapshot identifier does not refer to an existing cluster snapshot.

type nonrec authorization_not_found_fault = {
  1. message : exception_message option;
}

The specified CIDR IP range or EC2 security group is not authorized for the specified cluster security group.

type nonrec access_to_snapshot_denied_fault = {
  1. message : exception_message option;
}

The owner of the specified snapshot has not authorized your account to access the snapshot.

type nonrec revoke_endpoint_access_message = {
  1. force : boolean_ option;
    (*

    Indicates whether to force the revoke action. If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.

    *)
  2. vpc_ids : vpc_identifier_list option;
    (*

    The virtual private cloud (VPC) identifiers for which access is to be revoked.

    *)
  3. account : string_ option;
    (*

    The Amazon Web Services account ID whose access is to be revoked.

    *)
  4. cluster_identifier : string_ option;
    (*

    The cluster to revoke access from.

    *)
}
type nonrec invalid_endpoint_state_fault = {
  1. message : exception_message option;
}

The status of the endpoint is not valid.

type nonrec invalid_cluster_security_group_state_fault = {
  1. message : exception_message option;
}

The state of the cluster security group is not available.

type nonrec invalid_authorization_state_fault = {
  1. message : exception_message option;
}

The status of the authorization is not valid.

type nonrec endpoint_not_found_fault = {
  1. message : exception_message option;
}

The endpoint name doesn't refer to an existing endpoint.

type nonrec endpoint_authorization_not_found_fault = {
  1. message : exception_message option;
}

The authorization for this endpoint can't be found.

type nonrec authorization_status =
  1. | REVOKING
  2. | AUTHORIZED
type nonrec endpoint_authorization = {
  1. endpoint_count : integer option;
    (*

    The number of Redshift-managed VPC endpoints created for the authorization.

    *)
  2. allowed_vp_cs : vpc_identifier_list option;
    (*

    The VPCs allowed access to the cluster.

    *)
  3. allowed_all_vp_cs : boolean_ option;
    (*

    Indicates whether all VPCs in the grantee account are allowed access to the cluster.

    *)
  4. status : authorization_status option;
    (*

    The status of the authorization action.

    *)
  5. cluster_status : string_ option;
    (*

    The status of the cluster.

    *)
  6. authorize_time : t_stamp option;
    (*

    The time (UTC) when the authorization was created.

    *)
  7. cluster_identifier : string_ option;
    (*

    The cluster identifier.

    *)
  8. grantee : string_ option;
    (*

    The Amazon Web Services account ID of the grantee of the cluster.

    *)
  9. grantor : string_ option;
    (*

    The Amazon Web Services account ID of the cluster owner.

    *)
}

Describes an endpoint authorization for authorizing Redshift-managed VPC endpoint access to a cluster across Amazon Web Services accounts.

type nonrec ec2_security_group = {
  1. tags : tag_list option;
    (*

    The list of tags for the EC2 security group.

    *)
  2. ec2_security_group_owner_id : string_ option;
    (*

    The Amazon Web Services account ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

    *)
  3. ec2_security_group_name : string_ option;
    (*

    The name of the EC2 Security Group.

    *)
  4. status : string_ option;
    (*

    The status of the EC2 security group.

    *)
}

Describes an Amazon EC2 security group.

type nonrec ec2_security_group_list = ec2_security_group list
type nonrec ip_range = {
  1. tags : tag_list option;
    (*

    The list of tags for the IP range.

    *)
  2. cidri_p : string_ option;
    (*

    The IP range in Classless Inter-Domain Routing (CIDR) notation.

    *)
  3. status : string_ option;
    (*

    The status of the IP range, for example, "authorized".

    *)
}

Describes an IP range used in a security group.

type nonrec ip_range_list = ip_range list
type nonrec cluster_security_group = {
  1. tags : tag_list option;
    (*

    The list of tags for the cluster security group.

    *)
  2. ip_ranges : ip_range_list option;
    (*

    A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group.

    *)
  3. ec2_security_groups : ec2_security_group_list option;
    (*

    A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.

    *)
  4. description : string_ option;
    (*

    A description of the security group.

    *)
  5. cluster_security_group_name : string_ option;
    (*

    The name of the cluster security group to which the operation was applied.

    *)
}

Describes a security group.

type nonrec revoke_cluster_security_group_ingress_result = {
  1. cluster_security_group : cluster_security_group option;
}
type nonrec revoke_cluster_security_group_ingress_message = {
  1. ec2_security_group_owner_id : string_ option;
    (*

    The Amazon Web Services account number of the owner of the security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID is not an acceptable value. If EC2SecurityGroupOwnerId is specified, EC2SecurityGroupName must also be provided. and CIDRIP cannot be provided.

    Example: 111122223333

    *)
  2. ec2_security_group_name : string_ option;
    (*

    The name of the EC2 Security Group whose access is to be revoked. If EC2SecurityGroupName is specified, EC2SecurityGroupOwnerId must also be provided and CIDRIP cannot be provided.

    *)
  3. cidri_p : string_ option;
    (*

    The IP range for which to revoke access. This range must be a valid Classless Inter-Domain Routing (CIDR) block of IP addresses. If CIDRIP is specified, EC2SecurityGroupName and EC2SecurityGroupOwnerId cannot be provided.

    *)
  4. cluster_security_group_name : string_;
    (*

    The name of the security Group from which to revoke the ingress rule.

    *)
}
type nonrec cluster_security_group_not_found_fault = {
  1. message : exception_message option;
}

The cluster security group name does not refer to an existing cluster security group.

type nonrec revision_target = {
  1. database_revision_release_date : t_stamp option;
    (*

    The date on which the database revision was released.

    *)
  2. description : string_ option;
    (*

    A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision.

    *)
  3. database_revision : string_ option;
    (*

    A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision.

    *)
}

Describes a RevisionTarget.

type nonrec revision_targets_list = revision_target list
type nonrec resume_cluster_result = {
  1. cluster : cluster option;
}
type nonrec insufficient_cluster_capacity_fault = {
  1. message : exception_message option;
}

The number of nodes specified exceeds the allotted capacity of the cluster.

type nonrec restore_table_from_cluster_snapshot_result = {
  1. table_restore_status : table_restore_status option;
}
type nonrec restore_table_from_cluster_snapshot_message = {
  1. enable_case_sensitive_identifier : boolean_optional option;
    (*

    Indicates whether name identifiers for database, schema, and table are case sensitive. If true, the names are case sensitive. If false (default), the names are not case sensitive.

    *)
  2. new_table_name : string_;
    (*

    The name of the table to create as a result of the current request.

    *)
  3. target_schema_name : string_ option;
    (*

    The name of the schema to restore the table to.

    *)
  4. target_database_name : string_ option;
    (*

    The name of the database to restore the table to.

    *)
  5. source_table_name : string_;
    (*

    The name of the source table to restore from.

    *)
  6. source_schema_name : string_ option;
    (*

    The name of the source schema that contains the table to restore from. If you do not specify a SourceSchemaName value, the default is public.

    *)
  7. source_database_name : string_;
    (*

    The name of the source database that contains the table to restore from.

    *)
  8. snapshot_identifier : string_;
    (*

    The identifier of the snapshot to restore the table from. This snapshot must have been created from the Amazon Redshift cluster specified by the ClusterIdentifier parameter.

    *)
  9. cluster_identifier : string_;
    (*

    The identifier of the Amazon Redshift cluster to restore the table to.

    *)
}
type nonrec invalid_table_restore_argument_fault = {
  1. message : exception_message option;
}

The value specified for the sourceDatabaseName, sourceSchemaName, or sourceTableName parameter, or a combination of these, doesn't exist in the snapshot.

type nonrec invalid_cluster_snapshot_state_fault = {
  1. message : exception_message option;
}

The specified cluster snapshot is not in the available state, or other accounts are authorized to access the snapshot.

type nonrec in_progress_table_restore_quota_exceeded_fault = {
  1. message : exception_message option;
}

You have exceeded the allowed number of table restore requests. Wait for your current table restore requests to complete before making a new request.

type nonrec restore_from_cluster_snapshot_result = {
  1. cluster : cluster option;
}
type nonrec cluster_security_group_name_list = string_ list
type nonrec iam_role_arn_list = string_ list
type nonrec catalog_name_string = string
type nonrec restore_from_cluster_snapshot_message = {
  1. redshift_idc_application_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the IAM Identity Center application used for enabling Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions.

    *)
  2. catalog_name : catalog_name_string option;
    (*

    The name of the Glue Data Catalog that will be associated with the cluster enabled with Amazon Redshift federated permissions.

    Constraints:

    • Must contain at least one lowercase letter.
    • Can only contain lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-).

    Pattern: ^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$

    Example: my-catalog_01

    *)
  3. multi_a_z : boolean_optional option;
    (*

    If true, the snapshot will be restored to a cluster deployed in two Availability Zones.

    *)
  4. ip_address_type : string_ option;
    (*

    The IP address type for the cluster. Possible values are ipv4 and dualstack.

    *)
  5. master_password_secret_kms_key_id : string_ option;
    (*

    The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret. You can only use this parameter if ManageMasterPassword is true.

    *)
  6. manage_master_password : boolean_optional option;
    (*

    If true, Amazon Redshift uses Secrets Manager to manage the restored cluster's admin credentials. If ManageMasterPassword is false or not set, Amazon Redshift uses the admin credentials the cluster had at the time the snapshot was taken.

    *)
  7. encrypted : boolean_optional option;
    (*

    Enables support for restoring an unencrypted snapshot to a cluster encrypted with Key Management Service (KMS) and a customer managed key.

    *)
  8. target_reserved_node_offering_id : string_ option;
    (*

    The identifier of the target reserved node offering.

    *)
  9. reserved_node_id : string_ option;
    (*

    The identifier of the target reserved node offering.

    *)
  10. default_iam_role_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified while it was restored from a snapshot.

    *)
  11. aqua_configuration_status : aqua_configuration_status option;
    (*

    This parameter is retired. It does not set the AQUA configuration status. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
  12. availability_zone_relocation : boolean_optional option;
    (*

    The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is restored.

    *)
  13. number_of_nodes : integer_optional option;
    (*

    The number of nodes specified when provisioning the restored cluster.

    *)
  14. snapshot_schedule_identifier : string_ option;
    (*

    A unique identifier for the snapshot schedule.

    *)
  15. maintenance_track_name : string_ option;
    (*

    The name of the maintenance track for the restored cluster. When you take a snapshot, the snapshot inherits the MaintenanceTrack value from the cluster. The snapshot might be on a different track than the cluster that was the source for the snapshot. For example, suppose that you take a snapshot of a cluster that is on the current track and then change the cluster to be on the trailing track. In this case, the snapshot and the source cluster are on different tracks.

    *)
  16. iam_roles : iam_role_arn_list option;
    (*

    A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon Resource Name (ARN) format.

    The maximum number of IAM roles that you can associate is subject to a quota. For more information, go to Quotas and limits in the Amazon Redshift Cluster Management Guide.

    *)
  17. additional_info : string_ option;
    (*

    Reserved.

    *)
  18. enhanced_vpc_routing : boolean_optional option;
    (*

    An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

    If this option is true, enhanced VPC routing is enabled.

    Default: false

    *)
  19. node_type : string_ option;
    (*

    The node type that the restored cluster will be provisioned with.

    If you have a DC instance type, you must restore into that same instance type and size. In other words, you can only restore a dc2.large node type into another dc2 type. For more information about node types, see About Clusters and Nodes in the Amazon Redshift Cluster Management Guide.

    *)
  20. kms_key_id : string_ option;
    (*

    The Key Management Service (KMS) key ID of the encryption key that encrypts data in the cluster restored from a shared snapshot. You can also provide the key ID when you restore from an unencrypted snapshot to an encrypted cluster in the same account. Additionally, you can specify a new KMS key ID when you restore from an encrypted snapshot in the same account in order to change it. In that case, the restored cluster is encrypted with the new KMS key ID.

    *)
  21. manual_snapshot_retention_period : integer_optional option;
    (*

    The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  22. automated_snapshot_retention_period : integer_optional option;
    (*

    The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with CreateClusterSnapshot.

    You can't disable automated snapshots for RG or RA3 node types. Set the automated retention period from 1-35 days.

    Default: The value selected for the cluster from which the snapshot was taken.

    Constraints: Must be a value from 0 to 35.

    *)
  23. preferred_maintenance_window : string_ option;
    (*

    The weekly time range (in UTC) during which automated cluster maintenance can occur.

    Format: ddd:hh24:mi-ddd:hh24:mi

    Default: The value selected for the cluster from which the snapshot was taken. For more information about the time blocks for each region, see Maintenance Windows in Amazon Redshift Cluster Management Guide.

    Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

    Constraints: Minimum 30-minute window.

    *)
  24. vpc_security_group_ids : vpc_security_group_id_list option;
    (*

    A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.

    Default: The default VPC security group is associated with the cluster.

    VPC security groups only apply to clusters in VPCs.

    *)
  25. cluster_security_groups : cluster_security_group_name_list option;
    (*

    A list of security groups to be associated with this cluster.

    Default: The default cluster security group for Amazon Redshift.

    Cluster security groups only apply to clusters outside of VPCs.

    *)
  26. cluster_parameter_group_name : string_ option;
    (*

    The name of the parameter group to be associated with this cluster.

    Default: The default Amazon Redshift cluster parameter group. For information about the default parameter group, go to Working with Amazon Redshift Parameter Groups.

    Constraints:

    • Must be 1 to 255 alphanumeric characters or hyphens.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    *)
  27. elastic_ip : string_ option;
    (*

    The Elastic IP (EIP) address for the cluster. Don't specify the Elastic IP address for a publicly accessible cluster with availability zone relocation turned on.

    *)
  28. hsm_configuration_identifier : string_ option;
    (*

    Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

    *)
  29. hsm_client_certificate_identifier : string_ option;
    (*

    Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

    *)
  30. owner_account : string_ option;
    (*

    The Amazon Web Services account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.

    *)
  31. publicly_accessible : boolean_optional option;
    (*

    If true, the cluster can be accessed from a public network.

    Default: false

    *)
  32. cluster_subnet_group_name : string_ option;
    (*

    The name of the subnet group where you want to cluster restored.

    A snapshot of cluster in VPC can be restored only in VPC. Therefore, you must provide subnet group name where you want the cluster restored.

    *)
  33. allow_version_upgrade : boolean_optional option;
    (*

    If true, major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster.

    Default: true

    *)
  34. availability_zone : string_ option;
    (*

    The Amazon EC2 Availability Zone in which to restore the cluster.

    Default: A random, system-chosen Availability Zone.

    Example: us-east-2a

    *)
  35. port : integer_optional option;
    (*

    The port number on which the cluster accepts connections.

    Default: The same port as the original cluster.

    Valid values: For clusters with DC2 nodes, must be within the range 1150-65535. For clusters with RG or RA3 nodes, must be within the ranges 5431-5455 or 8191-8215.

    *)
  36. snapshot_cluster_identifier : string_ option;
    (*

    The name of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

    *)
  37. snapshot_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster. You must specify this parameter or snapshotIdentifier, but not both.

    *)
  38. snapshot_identifier : string_ option;
    (*

    The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive. You must specify this parameter or snapshotArn, but not both.

    Example: my-snapshot-id

    *)
  39. cluster_identifier : string_;
    (*

    The identifier of the cluster that will be created from restoring the snapshot.

    Constraints:

    • Must contain from 1 to 63 alphanumeric characters or hyphens.
    • Alphabetic characters must be lowercase.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    • Must be unique for all clusters within an Amazon Web Services account.
    *)
}
type nonrec reserved_node_offering_not_found_fault = {
  1. message : exception_message option;
}

Specified offering does not exist.

type nonrec reserved_node_not_found_fault = {
  1. message : exception_message option;
}

The specified reserved compute node not found.

type nonrec reserved_node_already_migrated_fault = {
  1. message : exception_message option;
}

Indicates that the reserved node has already been exchanged.

type nonrec reserved_node_already_exists_fault = {
  1. message : exception_message option;
}

User already has a reservation with the given identifier.

type nonrec redshift_idc_application_not_exists_fault = {
  1. message : exception_message option;
}

The application you attempted to find doesn't exist.

type nonrec number_of_nodes_quota_exceeded_fault = {
  1. message : exception_message option;
}

The operation would exceed the number of nodes allotted to the account. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec number_of_nodes_per_cluster_limit_exceeded_fault = {
  1. message : exception_message option;
}

The operation would exceed the number of nodes allowed for a cluster.

type nonrec limit_exceeded_fault = {
  1. message : exception_message option;
}

The encryption key has exceeded its grant limit in Amazon Web Services KMS.

type nonrec ipv6_cidr_block_not_found_fault = {
  1. message : exception_message option;
}

There are no subnets in your VPC with associated IPv6 CIDR blocks. To use dual-stack mode, associate an IPv6 CIDR block with each subnet in your VPC.

type nonrec invalid_vpc_network_state_fault = {
  1. message : exception_message option;
}

The cluster subnet group does not cover all Availability Zones.

type nonrec invalid_tag_fault = {
  1. message : exception_message option;
}

The tag is invalid.

type nonrec invalid_subnet = {
  1. message : exception_message option;
}

The requested subnet is not valid, or not all of the subnets are in the same VPC.

type nonrec invalid_restore_fault = {
  1. message : exception_message option;
}

The restore is invalid.

type nonrec invalid_reserved_node_state_fault = {
  1. message : exception_message option;
}

Indicates that the Reserved Node being exchanged is not in an active state.

type nonrec invalid_elastic_ip_fault = {
  1. message : exception_message option;
}

The Elastic IP (EIP) is invalid or cannot be found.

type nonrec invalid_cluster_track_fault = {
  1. message : exception_message option;
}

The provided cluster track name is not valid.

type nonrec invalid_cluster_subnet_group_state_fault = {
  1. message : exception_message option;
}

The cluster subnet group cannot be deleted because it is in use.

type nonrec hsm_configuration_not_found_fault = {
  1. message : exception_message option;
}

There is no Amazon Redshift HSM configuration with the specified identifier.

type nonrec hsm_client_certificate_not_found_fault = {
  1. message : exception_message option;
}

There is no Amazon Redshift HSM client certificate with the specified identifier.

type nonrec dependent_service_unavailable_fault = {
  1. message : exception_message option;
}

Your request cannot be completed because a dependent internal service is temporarily unavailable. Wait 30 to 60 seconds and try again.

type nonrec dependent_service_access_denied_fault = {
  1. message : exception_message option;
}

A dependent service denied access for the integration.

type nonrec cluster_subnet_group_not_found_fault = {
  1. message : exception_message option;
}

The cluster subnet group name does not refer to an existing cluster subnet group.

type nonrec cluster_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would exceed the allowed number of cluster instances for this account. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec cluster_parameter_group_not_found_fault = {
  1. message : exception_message option;
}

The parameter group name does not refer to an existing parameter group.

type nonrec cluster_already_exists_fault = {
  1. message : exception_message option;
}

The account already has a cluster with the given identifier.

type nonrec resource_policy = {
  1. policy : string_ option;
    (*

    The content of a resource policy.

    *)
  2. resource_arn : string_ option;
    (*

    The resources that a policy is attached to.

    *)
}

The policy that is attached to a resource.

type nonrec resource_not_found_fault = {
  1. message : exception_message option;
}

The resource could not be found.

type nonrec import_tables_completed = string_ list
type nonrec import_tables_in_progress = string_ list
type nonrec import_tables_not_started = string_ list
type nonrec resize_progress_message = {
  1. data_transfer_progress_percent : double_optional option;
    (*

    The percent of data transferred from source cluster to target cluster.

    *)
  2. target_encryption_type : string_ option;
    (*

    The type of encryption for the cluster after the resize is complete.

    Possible values are KMS and None.

    *)
  3. message : string_ option;
    (*

    An optional string to provide additional details about the resize action.

    *)
  4. resize_type : string_ option;
    (*

    An enum with possible values of ClassicResize and ElasticResize. These values describe the type of resize operation being performed.

    *)
  5. estimated_time_to_completion_in_seconds : long_optional option;
    (*

    The estimated time remaining, in seconds, until the resize operation is complete. This value is calculated based on the average resize rate and the estimated amount of data remaining to be processed. Once the resize operation is complete, this value will be 0.

    *)
  6. elapsed_time_in_seconds : long_optional option;
    (*

    The amount of seconds that have elapsed since the resize operation began. After the resize operation completes, this value shows the total actual time, in seconds, for the resize operation.

    *)
  7. progress_in_mega_bytes : long_optional option;
    (*

    While the resize operation is in progress, this value shows the current amount of data, in megabytes, that has been processed so far. When the resize operation is complete, this value shows the total amount of data, in megabytes, on the cluster, which may be more or less than TotalResizeDataInMegaBytes (the estimated total amount of data before resize).

    *)
  8. total_resize_data_in_mega_bytes : long_optional option;
    (*

    The estimated total amount of data, in megabytes, on the cluster before the resize operation began.

    *)
  9. avg_resize_rate_in_mega_bytes_per_second : double_optional option;
    (*

    The average rate of the resize operation over the last few minutes, measured in megabytes per second. After the resize operation completes, this value shows the average rate of the entire resize operation.

    *)
  10. import_tables_not_started : import_tables_not_started option;
    (*

    The names of tables that have not been yet imported.

    Valid Values: List of table names

    *)
  11. import_tables_in_progress : import_tables_in_progress option;
    (*

    The names of tables that are being currently imported.

    Valid Values: List of table names.

    *)
  12. import_tables_completed : import_tables_completed option;
    (*

    The names of tables that have been completely imported .

    Valid Values: List of table names.

    *)
  13. status : string_ option;
    (*

    The status of the resize operation.

    Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED | CANCELLING

    *)
  14. target_cluster_type : string_ option;
    (*

    The cluster type after the resize operation is complete.

    Valid Values: multi-node | single-node

    *)
  15. target_number_of_nodes : integer_optional option;
    (*

    The number of nodes that the cluster will have after the resize operation is complete.

    *)
  16. target_node_type : string_ option;
    (*

    The node type that the cluster will have after the resize operation is complete.

    *)
}

Describes the result of a cluster resize operation.

type nonrec resize_not_found_fault = {
  1. message : exception_message option;
}

A resize operation for the specified cluster is not found.

type nonrec resize_cluster_result = {
  1. cluster : cluster option;
}
type nonrec parameter_apply_type =
  1. | Dynamic
  2. | Static
type nonrec parameter = {
  1. minimum_engine_version : string_ option;
    (*

    The earliest engine version to which the parameter can apply.

    *)
  2. is_modifiable : boolean_ option;
    (*

    If true, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.

    *)
  3. apply_type : parameter_apply_type option;
    (*

    Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.

    *)
  4. allowed_values : string_ option;
    (*

    The valid range of values for the parameter.

    *)
  5. data_type : string_ option;
    (*

    The data type of the parameter.

    *)
  6. source : string_ option;
    (*

    The source of the parameter value, such as "engine-default" or "user".

    *)
  7. description : string_ option;
    (*

    A description of the parameter.

    *)
  8. parameter_value : string_ option;
    (*

    The value of the parameter. If ParameterName is wlm_json_configuration, then the maximum size of ParameterValue is 8000 characters.

    *)
  9. parameter_name : string_ option;
    (*

    The name of the parameter.

    *)
}

Describes a parameter in a cluster parameter group.

type nonrec parameters_list = parameter list
type nonrec reset_cluster_parameter_group_message = {
  1. parameters : parameters_list option;
    (*

    An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied.

    Constraints: A maximum of 20 parameters can be reset in a single request.

    *)
  2. reset_all_parameters : boolean_ option;
    (*

    If true, all parameters in the specified parameter group will be reset to their default values.

    Default: true

    *)
  3. parameter_group_name : string_;
    (*

    The name of the cluster parameter group to be reset.

    *)
}
type nonrec invalid_cluster_parameter_group_state_fault = {
  1. message : exception_message option;
}

The cluster parameter group action can not be completed because another task is in progress that involves the parameter group. Wait a few moments and try the operation again.

type nonrec cluster_parameter_group_name_message = {
  1. parameter_group_status : string_ option;
    (*

    The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.

    *)
  2. parameter_group_name : string_ option;
    (*

    The name of the cluster parameter group.

    *)
}
type nonrec recurring_charge = {
  1. recurring_charge_frequency : string_ option;
    (*

    The frequency at which the recurring charge amount is applied.

    *)
  2. recurring_charge_amount : double option;
    (*

    The amount charged per the period of time specified by the recurring charge frequency.

    *)
}

Describes a recurring charge.

type nonrec recurring_charge_list = recurring_charge list
type nonrec reserved_node_offering_type =
  1. | Upgradable
  2. | Regular
type nonrec reserved_node = {
  1. reserved_node_offering_type : reserved_node_offering_type option;
  2. recurring_charges : recurring_charge_list option;
    (*

    The recurring charges for the reserved node.

    *)
  3. offering_type : string_ option;
    (*

    The anticipated utilization of the reserved node, as defined in the reserved node offering.

    *)
  4. state : string_ option;
    (*

    The state of the reserved compute node.

    Possible Values:

    • pending-payment-This reserved node has recently been purchased, and the sale has been approved, but payment has not yet been confirmed.
    • active-This reserved node is owned by the caller and is available for use.
    • payment-failed-Payment failed for the purchase attempt.
    • retired-The reserved node is no longer available.
    • exchanging-The owner is exchanging the reserved node for another reserved node.
    *)
  5. node_count : integer option;
    (*

    The number of reserved compute nodes.

    *)
  6. currency_code : string_ option;
    (*

    The currency code for the reserved cluster.

    *)
  7. usage_price : double option;
    (*

    The hourly rate Amazon Redshift charges you for this reserved node.

    *)
  8. fixed_price : double option;
    (*

    The fixed cost Amazon Redshift charges you for this reserved node.

    *)
  9. duration : integer option;
    (*

    The duration of the node reservation in seconds.

    *)
  10. start_time : t_stamp option;
    (*

    The time the reservation started. You purchase a reserved node offering for a duration. This is the start time of that duration.

    *)
  11. node_type : string_ option;
    (*

    The node type of the reserved node.

    *)
  12. reserved_node_offering_id : string_ option;
    (*

    The identifier for the reserved node offering.

    *)
  13. reserved_node_id : string_ option;
    (*

    The unique identifier for the reservation.

    *)
}

Describes a reserved node. You can call the DescribeReservedNodeOfferings API to obtain the available reserved node offerings.

type nonrec reserved_node_list = reserved_node list
type nonrec reserved_nodes_message = {
  1. reserved_nodes : reserved_node_list option;
    (*

    The list of ReservedNode objects.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec reserved_node_quota_exceeded_fault = {
  1. message : exception_message option;
}

Request would exceed the user's compute node quota. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec reserved_node_offering = {
  1. reserved_node_offering_type : reserved_node_offering_type option;
  2. recurring_charges : recurring_charge_list option;
    (*

    The charge to your account regardless of whether you are creating any clusters using the node offering. Recurring charges are only in effect for heavy-utilization reserved nodes.

    *)
  3. offering_type : string_ option;
    (*

    The anticipated utilization of the reserved node, as defined in the reserved node offering.

    *)
  4. currency_code : string_ option;
    (*

    The currency code for the compute nodes offering.

    *)
  5. usage_price : double option;
    (*

    The rate you are charged for each hour the cluster that is using the offering is running.

    *)
  6. fixed_price : double option;
    (*

    The upfront fixed charge you will pay to purchase the specific reserved node offering.

    *)
  7. duration : integer option;
    (*

    The duration, in seconds, for which the offering will reserve the node.

    *)
  8. node_type : string_ option;
    (*

    The node type offered by the reserved node offering.

    *)
  9. reserved_node_offering_id : string_ option;
    (*

    The offering identifier.

    *)
}

Describes a reserved node offering.

type nonrec reserved_node_offering_list = reserved_node_offering list
type nonrec reserved_node_offerings_message = {
  1. reserved_node_offerings : reserved_node_offering_list option;
    (*

    A list of ReservedNodeOffering objects.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec reserved_node_exchange_status_list = reserved_node_exchange_status list
type nonrec reserved_node_exchange_not_found_fault = {
  1. message : exception_message option;
}

The reserved-node exchange status wasn't found.

type nonrec reserved_node_exchange_action_type =
  1. | RESIZE_CLUSTER
  2. | RESTORE_CLUSTER
type nonrec reserved_node_configuration_option = {
  1. target_reserved_node_offering : reserved_node_offering option;
  2. target_reserved_node_count : integer option;
    (*

    The target reserved-node count.

    *)
  3. source_reserved_node : reserved_node option;
}

Details for a reserved-node exchange. Examples include the node type for a reserved node, the price for a node, the node's state, and other details.

type nonrec reserved_node_configuration_option_list = reserved_node_configuration_option list
type nonrec reject_data_share_message = {
  1. data_share_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the datashare to reject.

    *)
}
type nonrec invalid_data_share_fault = {
  1. message : exception_message option;
}

There is an error with the datashare.

type nonrec data_share_status =
  1. | AVAILABLE
  2. | REJECTED
  3. | DEAUTHORIZED
  4. | AUTHORIZED
  5. | PENDING_AUTHORIZATION
  6. | ACTIVE
type nonrec data_share_association = {
  1. consumer_accepted_writes : boolean_optional option;
    (*

    Specifies whether write operations were allowed during data share association.

    *)
  2. producer_allowed_writes : boolean_optional option;
    (*

    Specifies whether write operations were allowed during data share authorization.

    *)
  3. status_change_date : t_stamp option;
    (*

    The status change data of the datashare that is associated.

    *)
  4. created_date : t_stamp option;
    (*

    The creation date of the datashare that is associated.

    *)
  5. consumer_region : string_ option;
    (*

    The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare.

    *)
  6. status : data_share_status option;
    (*

    The status of the datashare that is associated.

    *)
  7. consumer_identifier : string_ option;
    (*

    The name of the consumer accounts that have an association with a producer datashare.

    *)
}

The association of a datashare from a producer account with a data consumer.

type nonrec data_share_association_list = data_share_association list
type nonrec data_share_type =
  1. | INTERNAL
type nonrec data_share = {
  1. data_share_type : data_share_type option;
    (*

    The type of the datashare created by RegisterNamespace.

    *)
  2. managed_by : string_ option;
    (*

    The identifier of a datashare to show its managing entity.

    *)
  3. data_share_associations : data_share_association_list option;
    (*

    A value that specifies when the datashare has an association between producer and data consumers.

    *)
  4. allow_publicly_accessible_consumers : boolean_ option;
    (*

    A value that specifies whether the datashare can be shared to a publicly accessible cluster.

    *)
  5. producer_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the producer namespace.

    *)
  6. data_share_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the datashare that the consumer is to use.

    *)
}
type nonrec namespace_registration_status =
  1. | DEREGISTERING
  2. | REGISTERING
type nonrec register_namespace_output_message = {
  1. status : namespace_registration_status option;
    (*

    The registration status of the cluster or serverless namespace.

    *)
}
type nonrec provisioned_identifier = {
  1. cluster_identifier : string_;
    (*

    The unique identifier for the provisioned cluster.

    *)
}

The identifier for a provisioned cluster.

type nonrec namespace_identifier_union =
  1. | ProvisionedIdentifier of provisioned_identifier
    (*

    The identifier for a provisioned cluster.

    *)
  2. | ServerlessIdentifier of serverless_identifier
    (*

    The identifier for a serverless namespace.

    *)

Object to store union of values for a provisioned cluster or serverless namespace’s identifier.

type nonrec consumer_identifier_list = string_ list
type nonrec register_namespace_input_message = {
  1. consumer_identifiers : consumer_identifier_list;
    (*

    An array containing the ID of the consumer account that you want to register the namespace to.

    *)
  2. namespace_identifier : namespace_identifier_union;
    (*

    The unique identifier of the cluster or serverless namespace that you want to register.

    *)
}
type nonrec invalid_namespace_fault = {
  1. message : exception_message option;
}

The namespace isn't valid because the namespace doesn't exist. Provide a valid namespace.

A link to an Amazon Redshift Advisor reference for more information about a recommendation.

type nonrec reboot_cluster_result = {
  1. cluster : cluster option;
}
type nonrec reboot_cluster_message = {
  1. cluster_identifier : string_;
    (*

    The cluster identifier.

    *)
}
type nonrec invalid_policy_fault = {
  1. message : exception_message option;
}

The resource policy isn't valid.

type nonrec conflict_policy_update_fault = {
  1. message : exception_message option;
}

There is a conflict while updating the resource policy.

type nonrec put_resource_policy_result = {
  1. resource_policy : resource_policy option;
    (*

    The content of the updated resource policy.

    *)
}
type nonrec put_resource_policy_message = {
  1. policy : string_;
    (*

    The content of the resource policy being updated.

    *)
  2. resource_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the resource of which its resource policy is updated.

    *)
}
type nonrec purchase_reserved_node_offering_result = {
  1. reserved_node : reserved_node option;
}
type nonrec purchase_reserved_node_offering_message = {
  1. node_count : integer_optional option;
    (*

    The number of reserved nodes that you want to purchase.

    Default: 1

    *)
  2. reserved_node_offering_id : string_;
    (*

    The unique identifier of the reserved node offering you want to purchase.

    *)
}
type nonrec pause_cluster_result = {
  1. cluster : cluster option;
}
type nonrec invalid_usage_limit_fault = {
  1. message : exception_message option;
}

The usage limit is not valid.

type nonrec modify_usage_limit_message = {
  1. breach_action : usage_limit_breach_action option;
    (*

    The new action that Amazon Redshift takes when the limit is reached. For more information about this parameter, see UsageLimit.

    *)
  2. amount : long_optional option;
    (*

    The new limit amount. For more information about this parameter, see UsageLimit.

    *)
  3. usage_limit_id : string_;
    (*

    The identifier of the usage limit to modify.

    *)
}
type nonrec invalid_schedule_fault = {
  1. message : exception_message option;
}

The schedule you submitted isn't valid.

type nonrec modify_snapshot_schedule_message = {
  1. schedule_definitions : schedule_definition_list;
    (*

    An updated list of schedule definitions. A schedule definition is made up of schedule expressions, for example, "cron(30 12 *)" or "rate(12 hours)".

    *)
  2. schedule_identifier : string_;
    (*

    A unique alphanumeric identifier of the schedule to modify.

    *)
}
type nonrec invalid_retention_period_fault = {
  1. message : exception_message option;
}

The retention period specified is either in the past or is not a valid value.

The value must be either -1 or an integer between 1 and 3,653.

type nonrec modify_snapshot_copy_retention_period_result = {
  1. cluster : cluster option;
}
type nonrec modify_snapshot_copy_retention_period_message = {
  1. manual : boolean_ option;
    (*

    Indicates whether to apply the snapshot retention period to newly copied manual snapshots instead of automated snapshots.

    *)
  2. retention_period : integer;
    (*

    The number of days to retain automated snapshots in the destination Amazon Web Services Region after they are copied from the source Amazon Web Services Region.

    By default, this only changes the retention period of copied automated snapshots.

    If you decrease the retention period for automated snapshots that are copied to a destination Amazon Web Services Region, Amazon Redshift deletes any existing automated snapshots that were copied to the destination Amazon Web Services Region and that fall outside of the new retention period.

    Constraints: Must be at least 1 and no more than 35 for automated snapshots.

    If you specify the manual option, only newly copied manual snapshots will have the new retention period.

    If you specify the value of -1 newly copied manual snapshots are retained indefinitely.

    Constraints: The number of days must be either -1 or an integer between 1 and 3,653 for manual snapshots.

    *)
  3. cluster_identifier : string_;
    (*

    The unique identifier of the cluster for which you want to change the retention period for either automated or manual snapshots that are copied to a destination Amazon Web Services Region.

    Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled.

    *)
}
type nonrec invalid_scheduled_action_fault = {
  1. message : exception_message option;
}

The scheduled action is not valid.

type nonrec modify_scheduled_action_message = {
  1. enable : boolean_optional option;
    (*

    A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled.

    *)
  2. end_time : t_stamp option;
    (*

    A modified end time of the scheduled action. For more information about this parameter, see ScheduledAction.

    *)
  3. start_time : t_stamp option;
    (*

    A modified start time of the scheduled action. For more information about this parameter, see ScheduledAction.

    *)
  4. scheduled_action_description : string_ option;
    (*

    A modified description of the scheduled action.

    *)
  5. iam_role : string_ option;
    (*

    A different IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.

    *)
  6. schedule : string_ option;
    (*

    A modified schedule in either at( ) or cron( ) format. For more information about this parameter, see ScheduledAction.

    *)
  7. target_action : scheduled_action_type option;
    (*

    A modified JSON format of the scheduled action. For more information about this parameter, see ScheduledAction.

    *)
  8. scheduled_action_name : string_;
    (*

    The name of the scheduled action to modify.

    *)
}
type nonrec redshift_idc_application_name = string
type nonrec identity_namespace_string = string
type nonrec idc_display_name_string = string
type nonrec authorized_audience_list = string_ list
type nonrec authorized_token_issuer = {
  1. authorized_audiences_list : authorized_audience_list option;
    (*

    The list of audiences for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.

    *)
  2. trusted_token_issuer_arn : string_ option;
    (*

    The ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.

    *)
}

The authorized token issuer for the Amazon Redshift IAM Identity Center application.

type nonrec authorized_token_issuer_list = authorized_token_issuer list
type nonrec application_type =
  1. | LAKEHOUSE
  2. | NONE
type nonrec redshift_idc_application = {
  1. sso_tag_keys : tag_key_list option;
    (*

    A list of tags keys that Redshift Identity Center applications copy to IAM Identity Center. For each input key, the tag corresponding to the key-value pair is propagated.

    *)
  2. tags : tag_list option;
    (*

    A list of tags.

    *)
  3. application_type : application_type option;
    (*

    The type of application being created. Valid values are None or Lakehouse. Use Lakehouse to enable Amazon Redshift federated permissions on cluster.

    *)
  4. service_integrations : service_integration_list option;
    (*

    A list of service integrations for the Redshift IAM Identity Center application.

    *)
  5. authorized_token_issuer_list : authorized_token_issuer_list option;
    (*

    The authorized token issuer list for the Amazon Redshift IAM Identity Center application.

    *)
  6. idc_onboard_status : string_ option;
    (*

    The onboarding status for the Amazon Redshift IAM Identity Center application.

    *)
  7. idc_managed_application_arn : string_ option;
    (*

    The ARN for the Amazon Redshift IAM Identity Center application.

    *)
  8. iam_role_arn : string_ option;
    (*

    The ARN for the Amazon Redshift IAM Identity Center application. It has the required permissions to be assumed and invoke the IDC Identity Center API.

    *)
  9. idc_display_name : idc_display_name_string option;
    (*

    The display name for the Amazon Redshift IAM Identity Center application. It appears on the console.

    *)
  10. identity_namespace : identity_namespace_string option;
    (*

    The identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.

    *)
  11. redshift_idc_application_arn : string_ option;
    (*

    The ARN for the Redshift application that integrates with IAM Identity Center.

    *)
  12. redshift_idc_application_name : redshift_idc_application_name option;
    (*

    The name of the Redshift application in IAM Identity Center.

    *)
  13. idc_instance_arn : string_ option;
    (*

    The ARN for the IAM Identity Center instance that Redshift integrates with.

    *)
}

Contains properties for the Redshift IDC application.

type nonrec modify_redshift_idc_application_result = {
  1. redshift_idc_application : redshift_idc_application option;
}
type nonrec modify_redshift_idc_application_message = {
  1. service_integrations : service_integration_list option;
    (*

    A collection of service integrations associated with the application.

    *)
  2. authorized_token_issuer_list : authorized_token_issuer_list option;
    (*

    The authorized token issuer list for the Amazon Redshift IAM Identity Center application to change.

    *)
  3. idc_display_name : idc_display_name_string option;
    (*

    The display name for the Amazon Redshift IAM Identity Center application to change. It appears on the console.

    *)
  4. iam_role_arn : string_ option;
    (*

    The IAM role ARN associated with the Amazon Redshift IAM Identity Center application to change. It has the required permissions to be assumed and invoke the IDC Identity Center API.

    *)
  5. identity_namespace : identity_namespace_string option;
    (*

    The namespace for the Amazon Redshift IAM Identity Center application to change. It determines which managed application verifies the connection token.

    *)
  6. redshift_idc_application_arn : string_;
    (*

    The ARN for the Redshift application that integrates with IAM Identity Center.

    *)
}
type nonrec lakehouse_configuration = {
  1. catalog_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the Glue data catalog associated with the lakehouse configuration.

    *)
  2. lakehouse_registration_status : string_ option;
    (*

    The current status of the lakehouse registration. Indicates whether the cluster is successfully registered with the lakehouse.

    *)
  3. lakehouse_idc_application_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the IAM Identity Center application used for enabling Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions.

    *)
  4. cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster associated with this lakehouse configuration.

    *)
}

Contains configuration information for lakehouse integration, including the cluster identifier, catalog ARN, and registration status.

type nonrec lakehouse_registration =
  1. | DEREGISTER
  2. | REGISTER
type nonrec lakehouse_idc_registration =
  1. | DISASSOCIATE
  2. | ASSOCIATE
type nonrec modify_lakehouse_configuration_message = {
  1. dry_run : boolean_optional option;
    (*

    A boolean value that, if true, validates the request without actually modifying the lakehouse configuration. Use this to check for errors before making changes.

    *)
  2. lakehouse_idc_application_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the IAM Identity Center application used for enabling Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions.

    *)
  3. lakehouse_idc_registration : lakehouse_idc_registration option;
    (*

    Modifies the Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions. Valid values are Associate or Disassociate.

    *)
  4. catalog_name : catalog_name_string option;
    (*

    The name of the Glue data catalog that will be associated with the cluster enabled with Amazon Redshift federated permissions.

    Constraints:

    • Must contain at least one lowercase letter.
    • Can only contain lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-).

    Pattern: ^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$

    Example: my-catalog_01

    *)
  5. lakehouse_registration : lakehouse_registration option;
    (*

    Specifies whether to register or deregister the cluster with Amazon Redshift federated permissions. Valid values are Register or Deregister.

    *)
  6. cluster_identifier : string_;
    (*

    The unique identifier of the cluster whose lakehouse configuration you want to modify.

    *)
}
type nonrec integration_not_found_fault = {
  1. message : exception_message option;
}

The integration can't be found.

type nonrec integration_conflict_state_fault = {
  1. message : exception_message option;
}

The integration is in an invalid state and can't perform the requested operation.

type nonrec integration_conflict_operation_fault = {
  1. message : exception_message option;
}

A conflicting conditional operation is currently in progress against this resource. This typically occurs when there are multiple requests being made to the same resource at the same time, and these requests conflict with each other.

type nonrec integration_already_exists_fault = {
  1. message : exception_message option;
}

The integration you are trying to create already exists.

type nonrec integration_arn = string
type nonrec integration_name = string
type nonrec integration_error = {
  1. error_message : string_ option;
    (*

    The error message of an inbound integration error.

    *)
  2. error_code : string_;
    (*

    The error code of an inbound integration error.

    *)
}

The error of an inbound integration.

type nonrec integration_error_list = integration_error list
type nonrec description = string
type nonrec encryption_context_map = (string_ * string_) list
type nonrec integration = {
  1. tags : tag_list option;
    (*

    The list of tags associated with the integration.

    *)
  2. additional_encryption_context : encryption_context_map option;
    (*

    The encryption context for the integration. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

    *)
  3. kms_key_id : string_ option;
    (*

    The Key Management Service (KMS) key identifier for the key used to encrypt the integration.

    *)
  4. description : description option;
    (*

    The description of the integration.

    *)
  5. create_time : t_stamp option;
    (*

    The time (UTC) when the integration was created.

    *)
  6. errors : integration_error_list option;
    (*

    Any errors associated with the integration.

    *)
  7. status : zero_etl_integration_status option;
    (*

    The current status of the integration.

    *)
  8. target_arn : target_arn option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

    *)
  9. source_arn : source_arn option;
    (*

    The Amazon Resource Name (ARN) of the database used as the source for replication.

    *)
  10. integration_name : integration_name option;
    (*

    The name of the integration.

    *)
  11. integration_arn : integration_arn option;
    (*

    The Amazon Resource Name (ARN) of the integration.

    *)
}
type nonrec integration_description = string
type nonrec modify_integration_message = {
  1. integration_name : integration_name option;
    (*

    A new name for the integration.

    *)
  2. description : integration_description option;
    (*

    A new description for the integration.

    *)
  3. integration_arn : integration_arn;
    (*

    The unique identifier of the integration to modify.

    *)
}
type nonrec invalid_subscription_state_fault = {
  1. message : exception_message option;
}

The subscription request is invalid because it is a duplicate request. This subscription request is already in progress.

type nonrec event_categories_list = string_ list
type nonrec event_subscription = {
  1. tags : tag_list option;
    (*

    The list of tags for the event subscription.

    *)
  2. enabled : boolean_ option;
    (*

    A boolean value indicating whether the subscription is enabled; true indicates that the subscription is enabled.

    *)
  3. severity : string_ option;
    (*

    The event severity specified in the Amazon Redshift event notification subscription.

    Values: ERROR, INFO

    *)
  4. event_categories_list : event_categories_list option;
    (*

    The list of Amazon Redshift event categories specified in the event notification subscription.

    Values: Configuration, Management, Monitoring, Security, Pending

    *)
  5. source_ids_list : source_ids_list option;
    (*

    A list of the sources that publish events to the Amazon Redshift event notification subscription.

    *)
  6. source_type : string_ option;
    (*

    The source type of the events returned by the Amazon Redshift event notification, such as cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, or scheduled-action.

    *)
  7. subscription_creation_time : t_stamp option;
    (*

    The date and time the Amazon Redshift event notification subscription was created.

    *)
  8. status : string_ option;
    (*

    The status of the Amazon Redshift event notification subscription.

    Constraints:

    • Can be one of the following: active | no-permission | topic-not-exist
    • The status "no-permission" indicates that Amazon Redshift no longer has permission to post to the Amazon SNS topic. The status "topic-not-exist" indicates that the topic was deleted after the subscription was created.
    *)
  9. sns_topic_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the Amazon SNS topic used by the event notification subscription.

    *)
  10. cust_subscription_id : string_ option;
    (*

    The name of the Amazon Redshift event notification subscription.

    *)
  11. customer_aws_id : string_ option;
    (*

    The Amazon Web Services account associated with the Amazon Redshift event notification subscription.

    *)
}

Describes event subscriptions.

type nonrec modify_event_subscription_result = {
  1. event_subscription : event_subscription option;
}
type nonrec modify_event_subscription_message = {
  1. enabled : boolean_optional option;
    (*

    A Boolean value indicating if the subscription is enabled. true indicates the subscription is enabled

    *)
  2. severity : string_ option;
    (*

    Specifies the Amazon Redshift event severity to be published by the event notification subscription.

    Values: ERROR, INFO

    *)
  3. event_categories : event_categories_list option;
    (*

    Specifies the Amazon Redshift event categories to be published by the event notification subscription.

    Values: configuration, management, monitoring, security, pending

    *)
  4. source_ids : source_ids_list option;
    (*

    A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.

    Example: my-cluster-1, my-cluster-2

    Example: my-snapshot-20131010

    *)
  5. source_type : string_ option;
    (*

    The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.

    Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.

    *)
  6. sns_topic_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the SNS topic to be used by the event notification subscription.

    *)
  7. subscription_name : string_;
    (*

    The name of the modified Amazon Redshift event notification subscription.

    *)
}
type nonrec endpoint_access = {
  1. vpc_endpoint : vpc_endpoint option;
  2. vpc_security_groups : vpc_security_group_membership_list option;
    (*

    The security groups associated with the endpoint.

    *)
  3. address : string_ option;
    (*

    The DNS address of the endpoint.

    *)
  4. port : integer option;
    (*

    The port number on which the cluster accepts incoming connections.

    *)
  5. endpoint_create_time : t_stamp option;
    (*

    The time (UTC) that the endpoint was created.

    *)
  6. endpoint_name : string_ option;
    (*

    The name of the endpoint.

    *)
  7. endpoint_status : string_ option;
    (*

    The status of the endpoint.

    *)
  8. subnet_group_name : string_ option;
    (*

    The subnet group name where Amazon Redshift chooses to deploy the endpoint.

    *)
  9. resource_owner : string_ option;
    (*

    The Amazon Web Services account ID of the owner of the cluster.

    *)
  10. cluster_identifier : string_ option;
    (*

    The cluster identifier of the cluster associated with the endpoint.

    *)
}

Describes a Redshift-managed VPC endpoint.

type nonrec modify_endpoint_access_message = {
  1. vpc_security_group_ids : vpc_security_group_id_list option;
    (*

    The complete list of VPC security groups associated with the endpoint after the endpoint is modified.

    *)
  2. endpoint_name : string_;
    (*

    The endpoint to be modified.

    *)
}
type nonrec custom_domain_association_not_found_fault = {
  1. message : exception_message option;
}

An error occurred. The custom domain name couldn't be found.

type nonrec custom_cname_association_fault = {
  1. message : exception_message option;
}

An error occurred when an attempt was made to change the custom domain association.

type nonrec custom_domain_name_string = string
type nonrec custom_domain_certificate_arn_string = string
type nonrec modify_custom_domain_association_result = {
  1. custom_domain_cert_expiry_time : string_ option;
    (*

    The certificate expiration time associated with the result for the changed custom domain association.

    *)
  2. cluster_identifier : string_ option;
    (*

    The identifier of the cluster associated with the result for the changed custom domain association.

    *)
  3. custom_domain_certificate_arn : custom_domain_certificate_arn_string option;
    (*

    The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.

    *)
  4. custom_domain_name : custom_domain_name_string option;
    (*

    The custom domain name associated with the result for the changed custom domain association.

    *)
}
type nonrec modify_custom_domain_association_message = {
  1. cluster_identifier : string_;
    (*

    The identifier of the cluster to change a custom domain association for.

    *)
  2. custom_domain_certificate_arn : custom_domain_certificate_arn_string;
    (*

    The certificate Amazon Resource Name (ARN) for the changed custom domain association.

    *)
  3. custom_domain_name : custom_domain_name_string;
    (*

    The custom domain name for a changed custom domain association.

    *)
}
type nonrec cluster_subnet_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would result in user exceeding the allowed number of subnets in a cluster subnet groups. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec cluster_subnet_group = {
  1. supported_cluster_ip_address_types : value_string_list option;
    (*

    The IP address types supported by this cluster subnet group. Possible values are ipv4 and dualstack.

    *)
  2. tags : tag_list option;
    (*

    The list of tags for the cluster subnet group.

    *)
  3. subnets : subnet_list option;
    (*

    A list of the VPC Subnet elements.

    *)
  4. subnet_group_status : string_ option;
    (*

    The status of the cluster subnet group. Possible values are Complete, Incomplete and Invalid.

    *)
  5. vpc_id : string_ option;
    (*

    The VPC ID of the cluster subnet group.

    *)
  6. description : string_ option;
    (*

    The description of the cluster subnet group.

    *)
  7. cluster_subnet_group_name : string_ option;
    (*

    The name of the cluster subnet group.

    *)
}

Describes a subnet group.

type nonrec modify_cluster_subnet_group_result = {
  1. cluster_subnet_group : cluster_subnet_group option;
}
type nonrec modify_cluster_subnet_group_message = {
  1. subnet_ids : subnet_identifier_list;
    (*

    An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.

    *)
  2. description : string_ option;
    (*

    A text description of the subnet group to be modified.

    *)
  3. cluster_subnet_group_name : string_;
    (*

    The name of the subnet group to be modified.

    *)
}
type nonrec invalid_cluster_snapshot_schedule_state_fault = {
  1. message : exception_message option;
}

The cluster snapshot schedule state is not valid.

type nonrec modify_cluster_snapshot_schedule_message = {
  1. disassociate_schedule : boolean_optional option;
    (*

    A boolean to indicate whether to remove the assoiciation between the cluster and the schedule.

    *)
  2. schedule_identifier : string_ option;
    (*

    A unique alphanumeric identifier for the schedule that you want to associate with the cluster.

    *)
  3. cluster_identifier : string_;
    (*

    A unique identifier for the cluster whose snapshot schedule you want to modify.

    *)
}
type nonrec modify_cluster_snapshot_result = {
  1. snapshot : snapshot option;
}
type nonrec modify_cluster_snapshot_message = {
  1. force : boolean_ option;
    (*

    A Boolean option to override an exception if the retention period has already passed.

    *)
  2. manual_snapshot_retention_period : integer_optional option;
    (*

    The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.

    If the manual snapshot falls outside of the new retention period, you can specify the force option to immediately delete the snapshot.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  3. snapshot_identifier : string_;
    (*

    The identifier of the snapshot whose setting you want to modify.

    *)
}
type nonrec modify_cluster_parameter_group_message = {
  1. parameters : parameters_list;
    (*

    An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.

    For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.

    For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.

    *)
  2. parameter_group_name : string_;
    (*

    The name of the parameter group to be modified.

    *)
}

Describes a modify cluster parameter group operation.

type nonrec modify_cluster_maintenance_result = {
  1. cluster : cluster option;
}
type nonrec modify_cluster_maintenance_message = {
  1. defer_maintenance_duration : integer_optional option;
    (*

    An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 60 days or less.

    *)
  2. defer_maintenance_end_time : t_stamp option;
    (*

    A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration.

    *)
  3. defer_maintenance_start_time : t_stamp option;
    (*

    A timestamp indicating the start time for the deferred maintenance window.

    *)
  4. defer_maintenance_identifier : string_ option;
    (*

    A unique identifier for the deferred maintenance window.

    *)
  5. defer_maintenance : boolean_optional option;
    (*

    A boolean indicating whether to enable the deferred maintenance window.

    *)
  6. cluster_identifier : string_;
    (*

    A unique identifier for the cluster.

    *)
}
type nonrec modify_cluster_iam_roles_result = {
  1. cluster : cluster option;
}
type nonrec modify_cluster_iam_roles_message = {
  1. default_iam_role_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified.

    *)
  2. remove_iam_roles : iam_role_arn_list option;
    (*

    Zero or more IAM roles in ARN format to disassociate from the cluster.

    *)
  3. add_iam_roles : iam_role_arn_list option;
    (*

    Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN) format.

    *)
  4. cluster_identifier : string_;
    (*

    The unique identifier of the cluster for which you want to associate or disassociate IAM roles.

    *)
}
type nonrec cluster_on_latest_revision_fault = {
  1. message : exception_message option;
}

Cluster is already on the latest database revision.

type nonrec modify_cluster_db_revision_result = {
  1. cluster : cluster option;
}
type nonrec modify_cluster_db_revision_message = {
  1. revision_target : string_;
    (*

    The identifier of the database revision. You can retrieve this value from the response to the DescribeClusterDbRevisions request.

    *)
  2. cluster_identifier : string_;
    (*

    The unique identifier of a cluster whose database revision you want to modify.

    Example: examplecluster

    *)
}
type nonrec modify_cluster_result = {
  1. cluster : cluster option;
}
type nonrec modify_cluster_message = {
  1. extra_compute_for_automatic_optimization : boolean_optional option;
    (*

    If true, allocates additional compute resources for running automatic optimization operations.

    Default: false

    *)
  2. multi_a_z : boolean_optional option;
    (*

    If true and the cluster is currently only deployed in a single Availability Zone, the cluster will be modified to be deployed in two Availability Zones.

    *)
  3. ip_address_type : string_ option;
    (*

    The IP address types that the cluster supports. Possible values are ipv4 and dualstack.

    *)
  4. master_password_secret_kms_key_id : string_ option;
    (*

    The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret. You can only use this parameter if ManageMasterPassword is true.

    *)
  5. manage_master_password : boolean_optional option;
    (*

    If true, Amazon Redshift uses Secrets Manager to manage this cluster's admin credentials. You can't use MasterUserPassword if ManageMasterPassword is true. If ManageMasterPassword is false or not set, Amazon Redshift uses MasterUserPassword for the admin user account's password.

    *)
  6. port : integer_optional option;
    (*

    The option to change the port of an Amazon Redshift cluster.

    Valid Values:

    • For clusters with RG or RA3 nodes - Select a port within the ranges 5431-5455 or 8191-8215. (If you have an existing cluster with RG or RA3 nodes, it isn't required that you change the port to these ranges.)
    • For clusters with dc2 nodes - Select a port within the range 1150-65535.
    *)
  7. availability_zone : string_ option;
    (*

    The option to initiate relocation for an Amazon Redshift cluster to the target Availability Zone.

    *)
  8. availability_zone_relocation : boolean_optional option;
    (*

    The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster modification is complete.

    *)
  9. kms_key_id : string_ option;
    (*

    The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.

    *)
  10. encrypted : boolean_optional option;
    (*

    Indicates whether the cluster is encrypted. If the value is encrypted (true) and you provide a value for the KmsKeyId parameter, we encrypt the cluster with the provided KmsKeyId. If you don't provide a KmsKeyId, we encrypt with the default key.

    If the value is not encrypted (false), then the cluster is decrypted.

    *)
  11. maintenance_track_name : string_ option;
    (*

    The name for the maintenance track that you want to assign for the cluster. This name change is asynchronous. The new track name stays in the PendingModifiedValues for the cluster until the next maintenance window. When the maintenance track changes, the cluster is switched to the latest cluster release available for the maintenance track. At this point, the maintenance track name is applied.

    *)
  12. enhanced_vpc_routing : boolean_optional option;
    (*

    An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

    If this option is true, enhanced VPC routing is enabled.

    Default: false

    *)
  13. elastic_ip : string_ option;
    (*

    The Elastic IP (EIP) address for the cluster.

    Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.

    *)
  14. publicly_accessible : boolean_optional option;
    (*

    If true, the cluster can be accessed from a public network. Only clusters in VPCs can be set to be publicly available.

    Default: false

    *)
  15. new_cluster_identifier : string_ option;
    (*

    The new identifier for the cluster.

    Constraints:

    • Must contain from 1 to 63 alphanumeric characters or hyphens.
    • Alphabetic characters must be lowercase.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    • Must be unique for all clusters within an Amazon Web Services account.

    Example: examplecluster

    *)
  16. hsm_configuration_identifier : string_ option;
    (*

    Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

    *)
  17. hsm_client_certificate_identifier : string_ option;
    (*

    Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

    *)
  18. allow_version_upgrade : boolean_optional option;
    (*

    If true, major version upgrades will be applied automatically to the cluster during the maintenance window.

    Default: false

    *)
  19. cluster_version : string_ option;
    (*

    The new version number of the Amazon Redshift engine to upgrade to.

    For major version upgrades, if a non-default cluster parameter group is currently in use, a new cluster parameter group in the cluster parameter group family for the new version must be specified. The new cluster parameter group can be the default for that cluster parameter group family. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.

    Example: 1.0

    *)
  20. preferred_maintenance_window : string_ option;
    (*

    The weekly time range (in UTC) during which system maintenance can occur, if necessary. If system maintenance is necessary during the window, it may result in an outage.

    This maintenance window change is made immediately. If the new maintenance window indicates the current time, there must be at least 120 minutes between the current time and end of the window in order to ensure that pending changes are applied.

    Default: Uses existing setting.

    Format: ddd:hh24:mi-ddd:hh24:mi, for example wed:07:30-wed:08:00.

    Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

    Constraints: Must be at least 30 minutes.

    *)
  21. manual_snapshot_retention_period : integer_optional option;
    (*

    The default for number of days that a newly created manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely. This value doesn't retroactively change the retention periods of existing manual snapshots.

    The value must be either -1 or an integer between 1 and 3,653.

    The default value is -1.

    *)
  22. automated_snapshot_retention_period : integer_optional option;
    (*

    The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with CreateClusterSnapshot.

    If you decrease the automated snapshot retention period from its current value, existing automated snapshots that fall outside of the new retention period will be immediately deleted.

    You can't disable automated snapshots for RG or RA3 node types. Set the automated retention period from 1-35 days.

    Default: Uses existing setting.

    Constraints: Must be a value from 0 to 35.

    *)
  23. cluster_parameter_group_name : string_ option;
    (*

    The name of the cluster parameter group to apply to this cluster. This change is applied only after the cluster is rebooted. To reboot a cluster use RebootCluster.

    Default: Uses existing setting.

    Constraints: The cluster parameter group must be in the same parameter group family that matches the cluster version.

    *)
  24. master_user_password : sensitive_string option;
    (*

    The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response.

    You can't use MasterUserPassword if ManageMasterPassword is true.

    Operations never return the password, so this operation provides a way to regain access to the admin user account for a cluster if the password is lost.

    Default: Uses existing setting.

    Constraints:

    • Must be between 8 and 64 characters in length.
    • Must contain at least one uppercase letter.
    • Must contain at least one lowercase letter.
    • Must contain one number.
    • Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), ], [/], or [@]. } }
    *)
  25. vpc_security_group_ids : vpc_security_group_id_list option;
    (*

    A list of virtual private cloud (VPC) security groups to be associated with the cluster. This change is asynchronously applied as soon as possible.

    *)
  26. cluster_security_groups : cluster_security_group_name_list option;
    (*

    A list of cluster security groups to be authorized on this cluster. This change is asynchronously applied as soon as possible.

    Security groups currently associated with the cluster, and not in the list of groups to apply, will be revoked from the cluster.

    Constraints:

    • Must be 1 to 255 alphanumeric characters or hyphens
    • First character must be a letter
    • Cannot end with a hyphen or contain two consecutive hyphens
    *)
  27. number_of_nodes : integer_optional option;
    (*

    The new number of nodes of the cluster. If you specify a new number of nodes, you must also specify the node type parameter.

    For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

    Valid Values: Integer greater than 0.

    *)
  28. node_type : string_ option;
    (*

    The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter.

    For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

    Valid Values: dc2.large | dc2.8xlarge| rg.xlarge | rg.4xlarge | ra3.large | ra3.xlplus | ra3.4xlarge | ra3.16xlarge

    *)
  29. cluster_type : string_ option;
    (*

    The new cluster type.

    When you submit your cluster resize request, your existing cluster goes into a read-only mode. After Amazon Redshift provisions a new cluster based on your resize requirements, there will be outage for a period while the old cluster is deleted and your connection is switched to the new cluster. You can use DescribeResize to track the progress of the resize request.

    Valid Values: multi-node | single-node

    *)
  30. cluster_identifier : string_;
    (*

    The unique identifier of the cluster to be modified.

    Example: examplecluster

    *)
}
type nonrec invalid_authentication_profile_request_fault = {
  1. message : exception_message option;
}

The authentication profile request is not valid. The profile name can't be null or empty. The authentication profile API operation must be available in the Amazon Web Services Region.

type nonrec authentication_profile_quota_exceeded_fault = {
  1. message : exception_message option;
}

The size or number of authentication profiles has exceeded the quota. The maximum length of the JSON string and maximum number of authentication profiles is determined by a quota for your account.

type nonrec authentication_profile_not_found_fault = {
  1. message : exception_message option;
}

The authentication profile can't be found.

type nonrec authentication_profile_name_string = string
type nonrec modify_authentication_profile_result = {
  1. authentication_profile_content : string_ option;
    (*

    The updated content of the authentication profile in JSON format.

    *)
  2. authentication_profile_name : authentication_profile_name_string option;
    (*

    The name of the authentication profile that was replaced.

    *)
}
type nonrec modify_authentication_profile_message = {
  1. authentication_profile_content : string_;
    (*

    The new content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.

    *)
  2. authentication_profile_name : authentication_profile_name_string;
    (*

    The name of the authentication profile to replace.

    *)
}
type nonrec modify_aqua_output_message = {
  1. aqua_configuration : aqua_configuration option;
    (*

    This parameter is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
}
type nonrec modify_aqua_input_message = {
  1. aqua_configuration_status : aqua_configuration_status option;
    (*

    This parameter is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
  2. cluster_identifier : string_;
    (*

    The identifier of the cluster to be modified.

    *)
}
type nonrec impact_ranking_type =
  1. | LOW
  2. | MEDIUM
  3. | HIGH

The recommended action from the Amazon Redshift Advisor recommendation.

type nonrec recommendation = {
  1. recommended_actions : recommended_action_list option;
    (*

    List of Amazon Redshift recommended actions.

    *)
  2. recommendation_text : string_ option;
    (*

    The description of the recommendation.

    *)
  3. impact_ranking : impact_ranking_type option;
    (*

    The scale of the impact that the Advisor recommendation has to the performance and cost of the cluster.

    *)
  4. observation : string_ option;
    (*

    The description of what was observed about your cluster.

    *)
  5. description : string_ option;
    (*

    The description of the recommendation.

    *)
  6. title : string_ option;
    (*

    The title of the recommendation.

    *)
  7. recommendation_type : string_ option;
    (*

    The type of Advisor recommendation.

    *)
  8. created_at : t_stamp option;
    (*

    The date and time (UTC) that the recommendation was created.

    *)
  9. namespace_arn : string_ option;
    (*

    The Amazon Redshift cluster namespace ARN for which the recommendations is returned.

    *)
  10. cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster for which the recommendation is returned.

    *)
  11. id : string_ option;
    (*

    A unique identifier of the Advisor recommendation.

    *)
}

An Amazon Redshift Advisor recommended action on the Amazon Redshift cluster.

type nonrec recommendation_list = recommendation list
type nonrec list_recommendations_result = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. recommendations : recommendation_list option;
    (*

    The Advisor recommendations for action on the Amazon Redshift cluster.

    *)
}
type nonrec list_recommendations_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. namespace_arn : string_ option;
    (*

    The Amazon Redshift cluster namespace Amazon Resource Name (ARN) for which the list of Advisor recommendations is returned. If the neither the cluster identifier and the cluster namespace ARN parameters are specified, then recommendations for all clusters in the account are returned.

    *)
  4. cluster_identifier : string_ option;
    (*

    The unique identifier of the Amazon Redshift cluster for which the list of Advisor recommendations is returned. If the neither the cluster identifier and the cluster namespace ARN parameters are specified, then recommendations for all clusters in the account are returned.

    *)
}
type nonrec get_resource_policy_result = {
  1. resource_policy : resource_policy option;
    (*

    The content of the resource policy.

    *)
}
type nonrec get_resource_policy_message = {
  1. resource_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the resource of which its resource policy is fetched.

    *)
}
type nonrec get_reserved_node_exchange_offerings_output_message = {
  1. reserved_node_offerings : reserved_node_offering_list option;
    (*

    Returns an array of ReservedNodeOffering objects.

    *)
  2. marker : string_ option;
    (*

    An optional parameter that specifies the starting point for returning a set of response records. When the results of a GetReservedNodeExchangeOfferings request exceed the value specified in MaxRecords, Amazon Redshift returns a value in the marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the marker parameter and retrying the request.

    *)
}
type nonrec get_reserved_node_exchange_offerings_input_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of ReservedNodeOfferings.

    *)
  2. max_records : integer_optional option;
    (*

    An integer setting the maximum number of ReservedNodeOfferings to retrieve.

    *)
  3. reserved_node_id : string_;
    (*

    A string representing the node identifier for the DC1 Reserved Node to be exchanged.

    *)
}
type nonrec get_reserved_node_exchange_configuration_options_output_message = {
  1. reserved_node_configuration_option_list : reserved_node_configuration_option_list option;
    (*

    the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.

    *)
  2. marker : string_ option;
    (*

    A pagination token provided by a previous GetReservedNodeExchangeConfigurationOptions request.

    *)
}
type nonrec get_reserved_node_exchange_configuration_options_input_message = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous GetReservedNodeExchangeConfigurationOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a Marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. snapshot_identifier : string_ option;
    (*

    The identifier for the snapshot that is the source for the reserved-node exchange.

    *)
  4. cluster_identifier : string_ option;
    (*

    The identifier for the cluster that is the source for a reserved-node exchange.

    *)
  5. action_type : reserved_node_exchange_action_type;
    (*

    The action type of the reserved-node configuration. The action type can be an exchange initiated from either a snapshot or a resize.

    *)
}
type nonrec redshift_invalid_parameter_fault = {
  1. message : exception_message option;
}

The request contains one or more invalid parameters. This error occurs when required parameters are missing, parameter values are outside acceptable ranges, or parameter formats are incorrect.

type nonrec get_identity_center_auth_token_response = {
  1. expiration_time : t_stamp option;
    (*

    The time (UTC) when the token expires. After this timestamp, the token will no longer be valid for authentication.

    *)
  2. token : sensitive_string option;
    (*

    The encrypted authentication token containing the caller's Amazon Web Services IAM Identity Center identity information. This token is encrypted using Key Management Service and can only be decrypted by the specified Amazon Redshift clusters. Use this token with Amazon Redshift drivers to authenticate using your Amazon Web Services IAM Identity Center identity.

    *)
}

The response from GetIdentityCenterAuthToken containing the encrypted authentication token and expiration time.

type nonrec cluster_identifier_list = string_ list
type nonrec get_identity_center_auth_token_request = {
  1. cluster_ids : cluster_identifier_list;
    (*

    A list of cluster identifiers that the generated token can be used with. The token will be scoped to only allow authentication to the specified clusters.

    Constraints:

    • ClusterIds must contain at least 1 cluster identifier.
    • ClusterIds can hold a maximum of 20 cluster identifiers.
    • Cluster identifiers must be 1 to 63 characters in length.
    • The characters accepted for cluster identifiers are the following:

      • Alphanumeric characters
      • Hyphens
    • Cluster identifiers must start with a letter.
    • Cluster identifiers can't end with a hyphen or contain two consecutive hyphens.
    *)
}

The request parameters for GetIdentityCenterAuthToken.

type nonrec cluster_extended_credentials = {
  1. next_refresh_time : t_stamp option;
    (*

    Reserved for future use.

    *)
  2. expiration : t_stamp option;
    (*

    The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.

    *)
  3. db_password : sensitive_string option;
    (*

    A temporary password that you provide when you connect to a database.

    *)
  4. db_user : string_ option;
    (*

    A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity.

    *)
}
type nonrec get_cluster_credentials_with_iam_message = {
  1. custom_domain_name : string_ option;
    (*

    The custom domain name for the IAM message cluster credentials.

    *)
  2. duration_seconds : integer_optional option;
    (*

    The number of seconds until the returned temporary password expires.

    Range: 900-3600. Default: 900.

    *)
  3. cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster that contains the database for which you are requesting credentials.

    *)
  4. db_name : string_ option;
    (*

    The name of the database for which you are requesting credentials. If the database name is specified, the IAM policy must allow access to the resource dbname for the specified database name. If the database name is not specified, access to all databases is allowed.

    *)
}
type nonrec cluster_credentials = {
  1. expiration : t_stamp option;
    (*

    The date and time the password in DbPassword expires.

    *)
  2. db_password : sensitive_string option;
    (*

    A temporary password that authorizes the user name returned by DbUser to log on to the database DbName.

    *)
  3. db_user : string_ option;
    (*

    A database user name that is authorized to log on to the database DbName using the password DbPassword. If the specified DbUser exists in the database, the new user name has the same database permissions as the the user named in DbUser. By default, the user is added to PUBLIC. If the DbGroups parameter is specifed, DbUser is added to the listed groups for any sessions created using these credentials.

    *)
}

Temporary credentials with authorization to log on to an Amazon Redshift database.

type nonrec db_group_list = string_ list
type nonrec get_cluster_credentials_message = {
  1. custom_domain_name : string_ option;
    (*

    The custom domain name for the cluster credentials.

    *)
  2. db_groups : db_group_list option;
    (*

    A list of the names of existing database groups that the user named in DbUser will join for the current session, in addition to any group memberships for an existing user. If not specified, a new user is added only to PUBLIC.

    Database group name constraints

    • Must be 1 to 64 alphanumeric characters or hyphens
    • Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen.
    • First character must be a letter.
    • Must not contain a colon ( : ) or slash ( / ).
    • Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
    *)
  3. auto_create : boolean_optional option;
    (*

    Create a database user with the name specified for the user named in DbUser if one does not exist.

    *)
  4. duration_seconds : integer_optional option;
    (*

    The number of seconds until the returned temporary password expires.

    Constraint: minimum 900, maximum 3600.

    Default: 900

    *)
  5. cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster that contains the database for which you are requesting credentials. This parameter is case sensitive.

    *)
  6. db_name : string_ option;
    (*

    The name of a database that DbUser is authorized to log on to. If DbName is not specified, DbUser can log on to any existing database.

    Constraints:

    • Must be 1 to 64 alphanumeric characters or hyphens
    • Must contain uppercase or lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen.
    • First character must be a letter.
    • Must not contain a colon ( : ) or slash ( / ).
    • Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
    *)
  7. db_user : string_;
    (*

    The name of a database user. If a user name matching DbUser exists in the database, the temporary user credentials have the same permissions as the existing user. If DbUser doesn't exist in the database and Autocreate is True, a new user is created using the value for DbUser with PUBLIC permissions. If a database user matching the value for DbUser doesn't exist and Autocreate is False, then the command succeeds but the connection attempt will fail because the user doesn't exist in the database.

    For more information, see CREATE USER in the Amazon Redshift Database Developer Guide.

    Constraints:

    • Must be 1 to 64 alphanumeric characters or hyphens. The user name can't be PUBLIC.
    • Must contain uppercase or lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen.
    • First character must be a letter.
    • Must not contain a colon ( : ) or slash ( / ).
    • Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
    *)
}

The request parameters to get cluster credentials.

type nonrec failover_primary_compute_result = {
  1. cluster : cluster option;
}
type nonrec failover_primary_compute_input_message = {
  1. cluster_identifier : string_;
    (*

    The unique identifier of the cluster for which the primary compute unit will be failed over to another Availability Zone.

    *)
}
type nonrec incompatible_orderable_options = {
  1. message : exception_message option;
}

The specified options are incompatible.

type nonrec copy_to_region_disabled_fault = {
  1. message : exception_message option;
}

Cross-region snapshot copy was temporarily disabled. Try your request again.

type nonrec enable_snapshot_copy_result = {
  1. cluster : cluster option;
}
type nonrec enable_snapshot_copy_message = {
  1. manual_snapshot_retention_period : integer_optional option;
    (*

    The number of days to retain newly copied snapshots in the destination Amazon Web Services Region after they are copied from the source Amazon Web Services Region. If the value is -1, the manual snapshot is retained indefinitely.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  2. snapshot_copy_grant_name : string_ option;
    (*

    The name of the snapshot copy grant to use when snapshots of an Amazon Web Services KMS-encrypted cluster are copied to the destination region.

    *)
  3. retention_period : integer_optional option;
    (*

    The number of days to retain automated snapshots in the destination region after they are copied from the source region.

    Default: 7.

    Constraints: Must be at least 1 and no more than 35.

    *)
  4. destination_region : string_;
    (*

    The destination Amazon Web Services Region that you want to copy snapshots to.

    Constraints: Must be the name of a valid Amazon Web Services Region. For more information, see Regions and Endpoints in the Amazon Web Services General Reference.

    *)
  5. cluster_identifier : string_;
    (*

    The unique identifier of the source cluster to copy snapshots from.

    Constraints: Must be the valid name of an existing cluster that does not already have cross-region snapshot copy enabled.

    *)
}
type nonrec invalid_s3_key_prefix_fault = {
  1. message : exception_message option;
}

The string specified for the logging S3 key prefix does not comply with the documented constraints.

type nonrec invalid_s3_bucket_name_fault = {
  1. message : exception_message option;
}

The S3 bucket name is invalid. For more information about naming rules, go to Bucket Restrictions and Limitations in the Amazon Simple Storage Service (S3) Developer Guide.

type nonrec insufficient_s3_bucket_policy_fault = {
  1. message : exception_message option;
}

The cluster does not have read bucket or put object permissions on the S3 bucket specified when enabling logging.

type nonrec bucket_not_found_fault = {
  1. message : exception_message option;
}

Could not find the specified S3 bucket.

type nonrec log_destination_type =
  1. | CLOUDWATCH
  2. | S3
type nonrec log_type_list = string_ list
type nonrec logging_status = {
  1. log_exports : log_type_list option;
    (*

    The collection of exported log types. Possible values are connectionlog, useractivitylog, and userlog.

    *)
  2. log_destination_type : log_destination_type option;
    (*

    The log destination type. An enum with possible values of s3 and cloudwatch.

    *)
  3. last_failure_message : string_ option;
    (*

    The message indicating that logs failed to be delivered.

    *)
  4. last_failure_time : t_stamp option;
    (*

    The last time when logs failed to be delivered.

    *)
  5. last_successful_delivery_time : t_stamp option;
    (*

    The last time that logs were delivered.

    *)
  6. s3_key_prefix : s3_key_prefix_value option;
    (*

    The prefix applied to the log file names.

    *)
  7. bucket_name : string_ option;
    (*

    The name of the S3 bucket where the log files are stored.

    *)
  8. logging_enabled : boolean_ option;
    (*

    true if logging is on, false if logging is off.

    *)
}

Describes the status of logging for a cluster.

type nonrec enable_logging_message = {
  1. log_exports : log_type_list option;
    (*

    The collection of exported log types. Possible values are connectionlog, useractivitylog, and userlog.

    *)
  2. log_destination_type : log_destination_type option;
    (*

    The log destination type. An enum with possible values of s3 and cloudwatch.

    *)
  3. s3_key_prefix : s3_key_prefix_value option;
    (*

    The prefix applied to the log file names.

    Valid characters are any letter from any language, any whitespace character, any numeric character, and the following characters: underscore (_), period (.), colon (:), slash (/), equal (=), plus (+), backslash (]), hyphen ([-]), at symbol ([@]).

    *)
  4. bucket_name : string_ option;
    (*

    The name of an existing S3 bucket where the log files are to be stored.

    Constraints:

    • Must be in the same region as the cluster
    • The cluster must have read bucket and put object permissions
    *)
  5. cluster_identifier : string_;
    (*

    The identifier of the cluster on which logging is to be started.

    Example: examplecluster

    *)
}
type nonrec disassociate_data_share_consumer_message = {
  1. consumer_region : string_ option;
    (*

    From a datashare consumer account, removes association of a datashare from all the existing and future namespaces in the specified Amazon Web Services Region.

    *)
  2. consumer_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the consumer namespace that association for the datashare is removed from.

    *)
  3. disassociate_entire_account : boolean_optional option;
    (*

    A value that specifies whether association for the datashare is removed from the entire account.

    *)
  4. data_share_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the datashare to remove association for.

    *)
}
type nonrec disable_snapshot_copy_result = {
  1. cluster : cluster option;
}
type nonrec disable_snapshot_copy_message = {
  1. cluster_identifier : string_;
    (*

    The unique identifier of the source cluster that you want to disable copying of snapshots to a destination region.

    Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled.

    *)
}
type nonrec disable_logging_message = {
  1. cluster_identifier : string_;
    (*

    The identifier of the cluster on which logging is to be stopped.

    Example: examplecluster

    *)
}
type nonrec describe_usage_limits_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching usage limit objects that are associated with the specified tag value or values. For example, suppose that you have parameter groups that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the usage limit objects that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching usage limit objects that are associated with the specified key or keys. For example, suppose that you have parameter groups that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the usage limit objects have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeUsageLimits request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. feature_type : usage_limit_feature_type option;
    (*

    The feature type for which you want to describe usage limits.

    *)
  6. cluster_identifier : string_ option;
    (*

    The identifier of the cluster for which you want to describe usage limits.

    *)
  7. usage_limit_id : string_ option;
    (*

    The identifier of the usage limit to describe.

    *)
}
type nonrec describe_tags_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching resources that are associated with the specified value or values. For example, suppose that you have resources tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with all resources that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching resources that are associated with the specified key or keys. For example, suppose that you have resources tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with all resources that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the marker parameter and retrying the command. If the marker field is empty, all response records have been retrieved for the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number or response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  5. resource_type : string_ option;
    (*

    The type of resource with which you want to view tags. Valid resource types are:

    • Cluster
    • CIDR/IP
    • EC2 security group
    • Snapshot
    • Cluster security group
    • Subnet group
    • HSM connection
    • HSM certificate
    • Parameter group
    • Snapshot copy grant
    • Integration (zero-ETL integration or S3 event integration)

      To describe the tags associated with an integration, don't specify ResourceType, instead specify the ResourceName of the integration.

    For more information about Amazon Redshift resource types and constructing ARNs, go to Specifying Policy Elements: Actions, Effects, Resources, and Principals in the Amazon Redshift Cluster Management Guide.

    *)
  6. resource_name : string_ option;
    (*

    The Amazon Resource Name (ARN) for which you want to describe the tag or tags. For example, arn:aws:redshift:us-east-2:123456789:cluster:t1.

    *)
}
type nonrec describe_table_restore_status_message = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeTableRestoreStatus request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

    *)
  3. table_restore_request_id : string_ option;
    (*

    The identifier of the table restore request to return status for. If you don't specify a TableRestoreRequestId value, then DescribeTableRestoreStatus returns the status of all in-progress table restore requests.

    *)
  4. cluster_identifier : string_ option;
    (*

    The Amazon Redshift cluster that the table is being restored to.

    *)
}
type nonrec customer_storage_message = {
  1. total_provisioned_storage_in_mega_bytes : double option;
    (*

    The total amount of storage currently provisioned.

    *)
  2. total_backup_size_in_mega_bytes : double option;
    (*

    The total amount of storage currently used for snapshots.

    *)
}
type nonrec describe_snapshot_schedules_output_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the marker parameter and retrying the command. If the marker field is empty, all response records have been retrieved for the request.

    *)
  2. snapshot_schedules : snapshot_schedule_list option;
    (*

    A list of SnapshotSchedules.

    *)
}
type nonrec describe_snapshot_schedules_message = {
  1. max_records : integer_optional option;
    (*

    The maximum number or response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the marker parameter and retrying the command. If the marker field is empty, all response records have been retrieved for the request.

    *)
  3. tag_values : tag_value_list option;
    (*

    The value corresponding to the key of the snapshot schedule tag.

    *)
  4. tag_keys : tag_key_list option;
    (*

    The key value for a snapshot schedule tag.

    *)
  5. schedule_identifier : string_ option;
    (*

    A unique identifier for a snapshot schedule.

    *)
  6. cluster_identifier : string_ option;
    (*

    The unique identifier for the cluster whose snapshot schedules you want to view.

    *)
}
type nonrec describe_snapshot_copy_grants_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching resources that are associated with the specified value or values. For example, suppose that you have resources tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with all resources that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching resources that are associated with the specified key or keys. For example, suppose that you have resources tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with all resources that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeSnapshotCopyGrant request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    Constraints: You can specify either the SnapshotCopyGrantName parameter or the Marker parameter, but not both.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. snapshot_copy_grant_name : string_ option;
    (*

    The name of the snapshot copy grant.

    *)
}

The result of the DescribeSnapshotCopyGrants action.

type nonrec describe_scheduled_actions_message = {
  1. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  2. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  3. filters : scheduled_action_filter_list option;
    (*

    List of scheduled action filters.

    *)
  4. active : boolean_optional option;
    (*

    If true, retrieve only active scheduled actions. If false, retrieve only disabled scheduled actions.

    *)
  5. end_time : t_stamp option;
    (*

    The end time in UTC of the scheduled action to retrieve. Only active scheduled actions that have invocations before this time are retrieved.

    *)
  6. start_time : t_stamp option;
    (*

    The start time in UTC of the scheduled actions to retrieve. Only active scheduled actions that have invocations after this time are retrieved.

    *)
  7. target_action_type : scheduled_action_type_values option;
    (*

    The type of the scheduled actions to retrieve.

    *)
  8. scheduled_action_name : string_ option;
    (*

    The name of the scheduled action to retrieve.

    *)
}
type nonrec describe_resize_message = {
  1. cluster_identifier : string_;
    (*

    The unique identifier of a cluster whose resize progress you are requesting. This parameter is case-sensitive.

    By default, resize operations for all clusters defined for an Amazon Web Services account are returned.

    *)
}
type nonrec describe_reserved_nodes_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeReservedNodes request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. reserved_node_id : string_ option;
    (*

    Identifier for the node reservation.

    *)
}
type nonrec describe_reserved_node_offerings_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeReservedNodeOfferings request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. reserved_node_offering_id : string_ option;
    (*

    The unique identifier for the offering.

    *)
}
type nonrec describe_reserved_node_exchange_status_output_message = {
  1. marker : string_ option;
    (*

    A pagination token provided by a previous DescribeReservedNodeExchangeStatus request.

    *)
  2. reserved_node_exchange_status_details : reserved_node_exchange_status_list option;
    (*

    The details of the reserved-node exchange request, including the status, request time, source reserved-node identifier, and additional details.

    *)
}
type nonrec describe_reserved_node_exchange_status_input_message = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeReservedNodeExchangeStatus request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a Marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. reserved_node_exchange_request_id : string_ option;
    (*

    The identifier of the reserved-node exchange request.

    *)
  4. reserved_node_id : string_ option;
    (*

    The identifier of the source reserved node in a reserved-node exchange request.

    *)
}
type nonrec redshift_idc_application_list = redshift_idc_application list
type nonrec describe_redshift_idc_applications_result = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. redshift_idc_applications : redshift_idc_application_list option;
    (*

    The list of Amazon Redshift IAM Identity Center applications.

    *)
}
type nonrec describe_redshift_idc_applications_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. redshift_idc_application_arn : string_ option;
    (*

    The ARN for the Redshift application that integrates with IAM Identity Center.

    *)
}
type nonrec partner_integration_info = {
  1. updated_at : t_stamp option;
    (*

    The date (UTC) that the partner integration status was last updated by the partner.

    *)
  2. created_at : t_stamp option;
    (*

    The date (UTC) that the partner integration was created.

    *)
  3. status_message : partner_integration_status_message option;
    (*

    The status message provided by the partner.

    *)
  4. status : partner_integration_status option;
    (*

    The partner integration status.

    *)
  5. partner_name : partner_integration_partner_name option;
    (*

    The name of the partner.

    *)
  6. database_name : partner_integration_database_name option;
    (*

    The name of the database that receives data from a partner.

    *)
}

Describes a partner integration.

type nonrec partner_integration_info_list = partner_integration_info list
type nonrec describe_partners_output_message = {
  1. partner_integration_info_list : partner_integration_info_list option;
    (*

    A list of partner integrations.

    *)
}
type nonrec describe_partners_input_message = {
  1. partner_name : partner_integration_partner_name option;
    (*

    The name of the partner that is being described. If partner name is not specified, then all partner integrations are described.

    *)
  2. database_name : partner_integration_database_name option;
    (*

    The name of the database whose partner integration is being described. If database name is not specified, then all databases in the cluster are described.

    *)
  3. cluster_identifier : partner_integration_cluster_identifier;
    (*

    The cluster identifier of the cluster whose partner integration is being described.

    *)
  4. account_id : partner_integration_account_id;
    (*

    The Amazon Web Services account ID that owns the cluster.

    *)
}
type nonrec availability_zone_list = availability_zone list
type nonrec orderable_cluster_option = {
  1. availability_zones : availability_zone_list option;
    (*

    A list of availability zones for the orderable cluster.

    *)
  2. node_type : string_ option;
    (*

    The node type for the orderable cluster.

    *)
  3. cluster_type : string_ option;
    (*

    The cluster type, for example multi-node.

    *)
  4. cluster_version : string_ option;
    (*

    The version of the orderable cluster.

    *)
}

Describes an orderable cluster option.

type nonrec orderable_cluster_options_list = orderable_cluster_option list
type nonrec orderable_cluster_options_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. orderable_cluster_options : orderable_cluster_options_list option;
    (*

    An OrderableClusterOption structure containing information about orderable options for the cluster.

    *)
}

Contains the output from the DescribeOrderableClusterOptions action.

type nonrec describe_orderable_cluster_options_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeOrderableClusterOptions request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. node_type : string_ option;
    (*

    The node type filter value. Specify this parameter to show only the available offerings matching the specified node type.

    *)
  4. cluster_version : string_ option;
    (*

    The version filter value. Specify this parameter to show only the available offerings matching the specified version.

    Default: All versions.

    Constraints: Must be one of the version returned from DescribeClusterVersions.

    *)
}
type nonrec mode =
  1. | HIGH_PERFORMANCE
  2. | STANDARD
type nonrec node_configuration_option = {
  1. mode : mode option;
    (*

    The category of the node configuration recommendation.

    *)
  2. estimated_disk_utilization_percent : double_optional option;
    (*

    The estimated disk utilizaton percentage.

    *)
  3. number_of_nodes : integer option;
    (*

    The number of nodes.

    *)
  4. node_type : string_ option;
    (*

    The node type, such as, "ra3.4xlarge".

    *)
}

A list of node configurations.

type nonrec node_configuration_option_list = node_configuration_option list
type nonrec node_configuration_options_message = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. node_configuration_option_list : node_configuration_option_list option;
    (*

    A list of valid node configurations.

    *)
}
type nonrec action_type =
  1. | RESIZE_CLUSTER
  2. | RECOMMEND_NODE_CONFIG
  3. | RESTORE_CLUSTER
type nonrec node_configuration_options_filter_name =
  1. | MODE
  2. | ESTIMATED_DISK_UTILIZATION_PERCENT
  3. | NUM_NODES
  4. | NODE_TYPE
type nonrec operator_type =
  1. | BETWEEN
  2. | IN
  3. | GE
  4. | LE
  5. | GT
  6. | LT
  7. | EQ
type nonrec node_configuration_options_filter = {
  1. values : value_string_list option;
    (*

    List of values. Compare Name using Operator to Values. If filter Name is NumberOfNodes, then values can range from 0 to 200. If filter Name is EstimatedDiskUtilizationPercent, then values can range from 0 to 100. For example, filter NumberOfNodes (name) GT (operator) 3 (values).

    *)
  2. operator : operator_type option;
    (*

    The filter operator. If filter Name is NodeType only the 'in' operator is supported. Provide one value to evaluate for 'eq', 'lt', 'le', 'gt', and 'ge'. Provide two values to evaluate for 'between'. Provide a list of values for 'in'.

    *)
  3. name : node_configuration_options_filter_name option;
    (*

    The name of the element to filter.

    *)
}

A set of elements to filter the returned node configurations.

type nonrec node_configuration_options_filter_list = node_configuration_options_filter list
type nonrec describe_node_configuration_options_message = {
  1. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 500

    Constraints: minimum 100, maximum 500.

    *)
  2. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeNodeConfigurationOptions request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  3. filters : node_configuration_options_filter_list option;
    (*

    A set of name, operator, and value items to filter the results.

    *)
  4. owner_account : string_ option;
    (*

    The Amazon Web Services account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.

    *)
  5. snapshot_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the snapshot associated with the message to describe node configuration.

    *)
  6. snapshot_identifier : string_ option;
    (*

    The identifier of the snapshot to evaluate for possible node configurations.

    *)
  7. cluster_identifier : string_ option;
    (*

    The identifier of the cluster to evaluate for possible node configurations.

    *)
  8. action_type : action_type;
    (*

    The action type to evaluate for possible node configurations. Specify "restore-cluster" to get configuration combinations based on an existing snapshot. Specify "recommend-node-config" to get configuration recommendations based on an existing cluster or snapshot. Specify "resize-cluster" to get configuration combinations for elastic resize based on an existing cluster.

    *)
}
type nonrec describe_logging_status_message = {
  1. cluster_identifier : string_;
    (*

    The identifier of the cluster from which to get the logging status.

    Example: examplecluster

    *)
}
type nonrec integration_list = integration list
type nonrec integrations_message = {
  1. integrations : integration_list option;
    (*

    List of integrations that are described.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_integrations_filter_name =
  1. | STATUS
  2. | SOURCE_TYPES
  3. | SOURCE_ARN
  4. | INTEGRATION_ARN
type nonrec describe_integrations_filter_value_list = string_ list
type nonrec describe_integrations_filter = {
  1. values : describe_integrations_filter_value_list;
    (*

    Specifies the values to filter on.

    *)
  2. name : describe_integrations_filter_name;
    (*

    Specifies the type of integration filter.

    *)
}

A set of elements to filter the returned integrations.

type nonrec describe_integrations_filter_list = describe_integrations_filter list
type nonrec describe_integrations_message = {
  1. filters : describe_integrations_filter_list option;
    (*

    A filter that specifies one or more resources to return.

    *)
  2. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeIntegrations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

    *)
  3. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  4. integration_arn : integration_arn option;
    (*

    The unique identifier of the integration.

    *)
}
type nonrec inbound_integration_arn = string
type nonrec inbound_integration = {
  1. create_time : t_stamp option;
    (*

    The creation time of an inbound integration.

    *)
  2. errors : integration_error_list option;
    (*

    The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.

    *)
  3. status : zero_etl_integration_status option;
    (*

    The status of an inbound integration.

    *)
  4. target_arn : target_arn option;
    (*

    The Amazon Resource Name (ARN) of the target of an inbound integration.

    *)
  5. source_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the source of an inbound integration.

    *)
  6. integration_arn : inbound_integration_arn option;
    (*

    The Amazon Resource Name (ARN) of an inbound integration.

    *)
}

The content of an inbound integration.

type nonrec inbound_integration_list = inbound_integration list
type nonrec inbound_integrations_message = {
  1. inbound_integrations : inbound_integration_list option;
    (*

    A list of InboundIntegration instances.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_inbound_integrations_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeInboundIntegrations request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. target_arn : target_arn option;
    (*

    The Amazon Resource Name (ARN) of the target of an inbound integration.

    *)
  4. integration_arn : inbound_integration_arn option;
    (*

    The Amazon Resource Name (ARN) of the inbound integration.

    *)
}
type nonrec hsm_configuration = {
  1. tags : tag_list option;
    (*

    The list of tags for the HSM configuration.

    *)
  2. hsm_partition_name : string_ option;
    (*

    The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.

    *)
  3. hsm_ip_address : string_ option;
    (*

    The IP address that the Amazon Redshift cluster must use to access the HSM.

    *)
  4. description : string_ option;
    (*

    A text description of the HSM configuration.

    *)
  5. hsm_configuration_identifier : string_ option;
    (*

    The name of the Amazon Redshift HSM configuration.

    *)
}

Returns information about an HSM configuration, which is an object that describes to Amazon Redshift clusters the information they require to connect to an HSM where they can store database encryption keys.

type nonrec hsm_configuration_list = hsm_configuration list
type nonrec hsm_configuration_message = {
  1. hsm_configurations : hsm_configuration_list option;
    (*

    A list of HsmConfiguration objects.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_hsm_configurations_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching HSM configurations that are associated with the specified tag value or values. For example, suppose that you have HSM configurations that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the HSM configurations that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching HSM configurations that are associated with the specified key or keys. For example, suppose that you have HSM configurations that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the HSM configurations that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeHsmConfigurations request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. hsm_configuration_identifier : string_ option;
    (*

    The identifier of a specific Amazon Redshift HSM configuration to be described. If no identifier is specified, information is returned for all HSM configurations owned by your Amazon Web Services account.

    *)
}
type nonrec hsm_client_certificate = {
  1. tags : tag_list option;
    (*

    The list of tags for the HSM client certificate.

    *)
  2. hsm_client_certificate_public_key : string_ option;
    (*

    The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.

    *)
  3. hsm_client_certificate_identifier : string_ option;
    (*

    The identifier of the HSM client certificate.

    *)
}

Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.

type nonrec hsm_client_certificate_list = hsm_client_certificate list
type nonrec hsm_client_certificate_message = {
  1. hsm_client_certificates : hsm_client_certificate_list option;
    (*

    A list of the identifiers for one or more HSM client certificates used by Amazon Redshift clusters to store and retrieve database encryption keys in an HSM.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_hsm_client_certificates_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching HSM client certificates that are associated with the specified tag value or values. For example, suppose that you have HSM client certificates that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the HSM client certificates that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching HSM client certificates that are associated with the specified key or keys. For example, suppose that you have HSM client certificates that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the HSM client certificates that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeHsmClientCertificates request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. hsm_client_certificate_identifier : string_ option;
    (*

    The identifier of a specific HSM client certificate for which you want information. If no identifier is specified, information is returned for all HSM client certificates owned by your Amazon Web Services account.

    *)
}
type nonrec event_subscriptions_list = event_subscription list
type nonrec event_subscriptions_message = {
  1. event_subscriptions_list : event_subscriptions_list option;
    (*

    A list of event subscriptions.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_event_subscriptions_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching event notification subscriptions that are associated with the specified tag value or values. For example, suppose that you have subscriptions that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the subscriptions that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching event notification subscriptions that are associated with the specified key or keys. For example, suppose that you have subscriptions that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the subscriptions that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeEventSubscriptions request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. subscription_name : string_ option;
    (*

    The name of the Amazon Redshift event notification subscription to be described.

    *)
}
type nonrec event = {
  1. event_id : string_ option;
    (*

    The identifier of the event.

    *)
  2. date : t_stamp option;
    (*

    The date and time of the event.

    *)
  3. severity : string_ option;
    (*

    The severity of the event.

    Values: ERROR, INFO

    *)
  4. event_categories : event_categories_list option;
    (*

    A list of the event categories.

    Values: Configuration, Management, Monitoring, Security, Pending

    *)
  5. message : string_ option;
    (*

    The text of this event.

    *)
  6. source_type : source_type option;
    (*

    The source type for this event.

    *)
  7. source_identifier : string_ option;
    (*

    The identifier for the source of the event.

    *)
}

Describes an event.

type nonrec event_list = event list
type nonrec events_message = {
  1. events : event_list option;
    (*

    A list of Event instances.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_events_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeEvents request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. duration : integer_optional option;
    (*

    The number of minutes prior to the time of the request for which to retrieve events. For example, if the request is sent at 18:00 and you specify a duration of 60, then only events which have occurred after 17:00 will be returned.

    Default: 60

    *)
  4. end_time : t_stamp option;
    (*

    The end of the time interval for which to retrieve events, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

    Example: 2009-07-08T18:00Z

    *)
  5. start_time : t_stamp option;
    (*

    The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

    Example: 2009-07-08T18:00Z

    *)
  6. source_type : source_type option;
    (*

    The event source to retrieve events for. If no value is specified, all events are returned.

    Constraints:

    If SourceType is supplied, SourceIdentifier must also be provided.

    • Specify cluster when SourceIdentifier is a cluster identifier.
    • Specify cluster-security-group when SourceIdentifier is a cluster security group name.
    • Specify cluster-parameter-group when SourceIdentifier is a cluster parameter group name.
    • Specify cluster-snapshot when SourceIdentifier is a cluster snapshot identifier.
    *)
  7. source_identifier : string_ option;
    (*

    The identifier of the event source for which events will be returned. If this parameter is not specified, then all sources are included in the response.

    Constraints:

    If SourceIdentifier is supplied, SourceType must also be provided.

    • Specify a cluster identifier when SourceType is cluster.
    • Specify a cluster security group name when SourceType is cluster-security-group.
    • Specify a cluster parameter group name when SourceType is cluster-parameter-group.
    • Specify a cluster snapshot identifier when SourceType is cluster-snapshot.
    *)
}
type nonrec event_info_map = {
  1. severity : string_ option;
    (*

    The severity of the event.

    Values: ERROR, INFO

    *)
  2. event_description : string_ option;
    (*

    The description of an Amazon Redshift event.

    *)
  3. event_categories : event_categories_list option;
    (*

    The category of an Amazon Redshift event.

    *)
  4. event_id : string_ option;
    (*

    The identifier of an Amazon Redshift event.

    *)
}

Describes event information.

type nonrec event_info_map_list = event_info_map list
type nonrec event_categories_map = {
  1. events : event_info_map_list option;
    (*

    The events in the event category.

    *)
  2. source_type : string_ option;
    (*

    The source type, such as cluster or cluster-snapshot, that the returned categories belong to.

    *)
}

Describes event categories.

type nonrec event_categories_map_list = event_categories_map list
type nonrec event_categories_message = {
  1. event_categories_map_list : event_categories_map_list option;
    (*

    A list of event categories descriptions.

    *)
}
type nonrec describe_event_categories_message = {
  1. source_type : string_ option;
    (*

    The source type, such as cluster or parameter group, to which the described event categories apply.

    Valid values: cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, and scheduled-action.

    *)
}
type nonrec endpoint_authorizations = endpoint_authorization list
type nonrec endpoint_authorization_list = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeEndpointAuthorization request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

    *)
  2. endpoint_authorization_list : endpoint_authorizations option;
    (*

    The authorizations to an endpoint.

    *)
}
type nonrec describe_endpoint_authorization_message = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeEndpointAuthorization request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a Marker is included in the response so that the remaining results can be retrieved.

    *)
  3. grantee : boolean_optional option;
    (*

    Indicates whether to check authorization from a grantor or grantee point of view. If true, Amazon Redshift returns endpoint authorizations that you've been granted. If false (default), checks authorization from a grantor point of view.

    *)
  4. account : string_ option;
    (*

    The Amazon Web Services account ID of either the cluster owner (grantor) or grantee. If Grantee parameter is true, then the Account value is of the grantor.

    *)
  5. cluster_identifier : string_ option;
    (*

    The cluster identifier of the cluster to access.

    *)
}
type nonrec endpoint_accesses = endpoint_access list
type nonrec endpoint_access_list = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeEndpointAccess request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

    *)
  2. endpoint_access_list : endpoint_accesses option;
    (*

    The list of endpoints with access to the cluster.

    *)
}
type nonrec describe_endpoint_access_message = {
  1. marker : string_ option;
    (*

    An optional pagination token provided by a previous DescribeEndpointAccess request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a Marker is included in the response so that the remaining results can be retrieved.

    *)
  3. vpc_id : string_ option;
    (*

    The virtual private cloud (VPC) identifier with access to the cluster.

    *)
  4. endpoint_name : string_ option;
    (*

    The name of the endpoint to be described.

    *)
  5. resource_owner : string_ option;
    (*

    The Amazon Web Services account ID of the owner of the cluster.

    *)
  6. cluster_identifier : string_ option;
    (*

    The cluster identifier associated with the described endpoint.

    *)
}
type nonrec default_cluster_parameters = {
  1. parameters : parameters_list option;
    (*

    The list of cluster default parameters.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  3. parameter_group_family : string_ option;
    (*

    The name of the cluster parameter group family to which the engine default parameters apply.

    *)
}

Describes the default cluster parameters for a parameter group family.

type nonrec describe_default_cluster_parameters_result = {
  1. default_cluster_parameters : default_cluster_parameters option;
}
type nonrec describe_default_cluster_parameters_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDefaultClusterParameters request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. parameter_group_family : string_;
    (*

    The name of the cluster parameter group family.

    *)
}
type nonrec data_share_list = data_share list
type nonrec describe_data_shares_for_producer_result = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataSharesForProducer request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. data_shares : data_share_list option;
    (*

    Shows the results of datashares available for producers.

    *)
}
type nonrec data_share_status_for_producer =
  1. | REJECTED
  2. | DEAUTHORIZED
  3. | PENDING_AUTHORIZATION
  4. | AUTHORIZED
  5. | ACTIVE
type nonrec describe_data_shares_for_producer_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataSharesForProducer request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. status : data_share_status_for_producer option;
    (*

    An identifier giving the status of a datashare in the producer. If this field is specified, Amazon Redshift returns the list of datashares that have the specified status.

    *)
  4. producer_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the producer namespace that returns in the list of datashares.

    *)
}
type nonrec describe_data_shares_for_consumer_result = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataSharesForConsumer request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. data_shares : data_share_list option;
    (*

    Shows the results of datashares available for consumers.

    *)
}
type nonrec data_share_status_for_consumer =
  1. | AVAILABLE
  2. | ACTIVE
type nonrec describe_data_shares_for_consumer_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataSharesForConsumer request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. status : data_share_status_for_consumer option;
    (*

    An identifier giving the status of a datashare in the consumer cluster. If this field is specified, Amazon Redshift returns the list of datashares that have the specified status.

    *)
  4. consumer_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the consumer namespace that returns in the list of datashares.

    *)
}
type nonrec describe_data_shares_result = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataShares request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. data_shares : data_share_list option;
    (*

    The results returned from describing datashares.

    *)
}
type nonrec describe_data_shares_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataShares request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    *)
  3. data_share_arn : string_ option;
    (*

    The Amazon resource name (ARN) of the datashare to describe details of.

    *)
}
type nonrec certificate_association = {
  1. cluster_identifier : string_ option;
    (*

    The cluster identifier for the certificate association.

    *)
  2. custom_domain_name : string_ option;
    (*

    The custom domain name for the certificate association.

    *)
}

A cluster ID and custom domain name tied to a specific certificate. These are typically returned in a list.

type nonrec certificate_association_list = certificate_association list
type nonrec association = {
  1. certificate_associations : certificate_association_list option;
    (*

    A list of all associated clusters and domain names tied to a specific certificate.

    *)
  2. custom_domain_certificate_expiry_date : t_stamp option;
    (*

    The expiration date for the certificate.

    *)
  3. custom_domain_certificate_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the certificate associated with the custom domain.

    *)
}

Contains information about the custom domain name association.

type nonrec association_list = association list
type nonrec custom_domain_associations_message = {
  1. associations : association_list option;
    (*

    The associations for the custom domain.

    *)
  2. marker : string_ option;
    (*

    The marker for the custom domain association.

    *)
}
type nonrec describe_custom_domain_associations_message = {
  1. marker : string_ option;
    (*

    The marker for the custom domain association.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum records setting for the associated custom domain.

    *)
  3. custom_domain_certificate_arn : custom_domain_certificate_arn_string option;
    (*

    The certificate Amazon Resource Name (ARN) for the custom domain association.

    *)
  4. custom_domain_name : custom_domain_name_string option;
    (*

    The custom domain name for the custom domain association.

    *)
}
type nonrec cluster_version = {
  1. description : string_ option;
    (*

    The description of the cluster version.

    *)
  2. cluster_parameter_group_family : string_ option;
    (*

    The name of the cluster parameter group family for the cluster.

    *)
  3. cluster_version : string_ option;
    (*

    The version number used by the cluster.

    *)
}

Describes a cluster version, including the parameter group family and description of the version.

type nonrec cluster_version_list = cluster_version list
type nonrec cluster_versions_message = {
  1. cluster_versions : cluster_version_list option;
    (*

    A list of Version elements.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}

Contains the output from the DescribeClusterVersions action.

type nonrec describe_cluster_versions_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterVersions request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. cluster_parameter_group_family : string_ option;
    (*

    The name of a specific cluster parameter group family to return details for.

    Constraints:

    • Must be 1 to 255 alphanumeric characters
    • First character must be a letter
    • Cannot end with a hyphen or contain two consecutive hyphens
    *)
  4. cluster_version : string_ option;
    (*

    The specific cluster version to return.

    Example: 1.0

    *)
}
type nonrec describe_cluster_tracks_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterTracks request exceed the value specified in MaxRecords, Amazon Redshift returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    An integer value for the maximum number of maintenance tracks to return.

    *)
  3. maintenance_track_name : string_ option;
    (*

    The name of the maintenance track.

    *)
}
type nonrec cluster_subnet_groups = cluster_subnet_group list
type nonrec cluster_subnet_group_message = {
  1. cluster_subnet_groups : cluster_subnet_groups option;
    (*

    A list of ClusterSubnetGroup instances.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}

Contains the output from the DescribeClusterSubnetGroups action.

type nonrec describe_cluster_subnet_groups_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching cluster subnet groups that are associated with the specified tag value or values. For example, suppose that you have subnet groups that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the subnet groups that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching cluster subnet groups that are associated with the specified key or keys. For example, suppose that you have subnet groups that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the subnet groups that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterSubnetGroups request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. cluster_subnet_group_name : string_ option;
    (*

    The name of the cluster subnet group for which information is requested.

    *)
}
type nonrec describe_cluster_snapshots_message = {
  1. sorting_entities : snapshot_sorting_entity_list option;
  2. cluster_exists : boolean_optional option;
    (*

    A value that indicates whether to return snapshots only for an existing cluster. You can perform table-level restore only by using a snapshot of an existing cluster, that is, a cluster that has not been deleted. Values for this parameter work as follows:

    • If ClusterExists is set to true, ClusterIdentifier is required.
    • If ClusterExists is set to false and ClusterIdentifier isn't specified, all snapshots associated with deleted clusters (orphaned snapshots) are returned.
    • If ClusterExists is set to false and ClusterIdentifier is specified for a deleted cluster, snapshots associated with that cluster are returned.
    • If ClusterExists is set to false and ClusterIdentifier is specified for an existing cluster, no snapshots are returned.
    *)
  3. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching cluster snapshots that are associated with the specified tag value or values. For example, suppose that you have snapshots that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the snapshots that have either or both of these tag values associated with them.

    *)
  4. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching cluster snapshots that are associated with the specified key or keys. For example, suppose that you have snapshots that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the snapshots that have either or both of these tag keys associated with them.

    *)
  5. owner_account : string_ option;
    (*

    The Amazon Web Services account used to create or copy the snapshot. Use this field to filter the results to snapshots owned by a particular account. To describe snapshots you own, either specify your Amazon Web Services account, or do not specify the parameter.

    *)
  6. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterSnapshots request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  7. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  8. end_time : t_stamp option;
    (*

    A time value that requests only snapshots created at or before the specified time. The time value is specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

    Example: 2012-07-16T18:00:00Z

    *)
  9. start_time : t_stamp option;
    (*

    A value that requests only snapshots created at or after the specified time. The time value is specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.

    Example: 2012-07-16T18:00:00Z

    *)
  10. snapshot_type : string_ option;
    (*

    The type of snapshots for which you are requesting information. By default, snapshots of all types are returned.

    Valid Values: automated | manual

    *)
  11. snapshot_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the snapshot associated with the message to describe cluster snapshots.

    *)
  12. snapshot_identifier : string_ option;
    (*

    The snapshot identifier of the snapshot about which to return information.

    *)
  13. cluster_identifier : string_ option;
    (*

    The identifier of the cluster which generated the requested snapshots.

    *)
}
type nonrec cluster_security_groups = cluster_security_group list
type nonrec cluster_security_group_message = {
  1. cluster_security_groups : cluster_security_groups option;
    (*

    A list of ClusterSecurityGroup instances.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}
type nonrec describe_cluster_security_groups_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching cluster security groups that are associated with the specified tag value or values. For example, suppose that you have security groups that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the security groups that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching cluster security groups that are associated with the specified key or keys. For example, suppose that you have security groups that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the security groups that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterSecurityGroups request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    Constraints: You must specify either the ClusterSecurityGroupName parameter or the Marker parameter, but not both.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. cluster_security_group_name : string_ option;
    (*

    The name of a cluster security group for which you are requesting details. You must specify either the Marker parameter or a ClusterSecurityGroupName parameter, but not both.

    Example: securitygroup1

    *)
}
type nonrec cluster_list = cluster list
type nonrec clusters_message = {
  1. clusters : cluster_list option;
    (*

    A list of Cluster objects, where each object describes one cluster.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}

Contains the output from the DescribeClusters action.

type nonrec describe_clusters_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching clusters that are associated with the specified tag value or values. For example, suppose that you have clusters that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the clusters that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching clusters that are associated with the specified key or keys. For example, suppose that you have clusters that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the clusters that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusters request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    Constraints: You can specify either the ClusterIdentifier parameter or the Marker parameter, but not both.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. cluster_identifier : string_ option;
    (*

    The unique identifier of a cluster whose properties you are requesting. This parameter is case sensitive.

    The default is that all clusters defined for an account are returned.

    *)
}
type nonrec cluster_parameter_group_details = {
  1. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
  2. parameters : parameters_list option;
    (*

    A list of Parameter instances. Each instance lists the parameters of one cluster parameter group.

    *)
}

Contains the output from the DescribeClusterParameters action.

type nonrec describe_cluster_parameters_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterParameters request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. source : string_ option;
    (*

    The parameter types to return. Specify user to show parameters that are different form the default. Similarly, specify engine-default to show parameters that are the same as the default parameter group.

    Default: All parameter types returned.

    Valid Values: user | engine-default

    *)
  4. parameter_group_name : string_;
    (*

    The name of a cluster parameter group for which to return details.

    *)
}
type nonrec cluster_parameter_group = {
  1. tags : tag_list option;
    (*

    The list of tags for the cluster parameter group.

    *)
  2. description : string_ option;
    (*

    The description of the parameter group.

    *)
  3. parameter_group_family : string_ option;
    (*

    The name of the cluster parameter group family that this cluster parameter group is compatible with.

    *)
  4. parameter_group_name : string_ option;
    (*

    The name of the cluster parameter group.

    *)
}

Describes a parameter group.

type nonrec parameter_group_list = cluster_parameter_group list
type nonrec cluster_parameter_groups_message = {
  1. parameter_groups : parameter_group_list option;
    (*

    A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group.

    *)
  2. marker : string_ option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    *)
}

Contains the output from the DescribeClusterParameterGroups action.

type nonrec describe_cluster_parameter_groups_message = {
  1. tag_values : tag_value_list option;
    (*

    A tag value or values for which you want to return all matching cluster parameter groups that are associated with the specified tag value or values. For example, suppose that you have parameter groups that are tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with the parameter groups that have either or both of these tag values associated with them.

    *)
  2. tag_keys : tag_key_list option;
    (*

    A tag key or keys for which you want to return all matching cluster parameter groups that are associated with the specified key or keys. For example, suppose that you have parameter groups that are tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the parameter groups that have either or both of these tag keys associated with them.

    *)
  3. marker : string_ option;
    (*

    An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterParameterGroups request exceed the value specified in MaxRecords, Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    *)
  4. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  5. parameter_group_name : string_ option;
    (*

    The name of a specific parameter group for which to return details. By default, details about all parameter groups and the default parameter group are returned.

    *)
}
type nonrec cluster_db_revision = {
  1. revision_targets : revision_targets_list option;
    (*

    A list of RevisionTarget objects, where each object describes the database revision that a cluster can be updated to.

    *)
  2. database_revision_release_date : t_stamp option;
    (*

    The date on which the database revision was released.

    *)
  3. current_database_revision : string_ option;
    (*

    A string representing the current cluster version.

    *)
  4. cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster.

    *)
}

Describes a ClusterDbRevision.

type nonrec cluster_db_revisions_list = cluster_db_revision list
type nonrec cluster_db_revisions_message = {
  1. cluster_db_revisions : cluster_db_revisions_list option;
    (*

    A list of revisions.

    *)
  2. marker : string_ option;
    (*

    A string representing the starting point for the next set of revisions. If a value is returned in a response, you can retrieve the next set of revisions by providing the value in the marker parameter and retrying the command. If the marker field is empty, all revisions have already been returned.

    *)
}
type nonrec describe_cluster_db_revisions_message = {
  1. marker : string_ option;
    (*

    An optional parameter that specifies the starting point for returning a set of response records. When the results of a DescribeClusterDbRevisions request exceed the value specified in MaxRecords, Amazon Redshift returns a value in the marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the marker parameter and retrying the request.

    Constraints: You can specify either the ClusterIdentifier parameter, or the marker parameter, but not both.

    *)
  2. max_records : integer_optional option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in the marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the marker parameter and retrying the request.

    Default: 100

    Constraints: minimum 20, maximum 100.

    *)
  3. cluster_identifier : string_ option;
    (*

    A unique identifier for a cluster whose ClusterDbRevisions you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.

    *)
}
type nonrec authentication_profile = {
  1. authentication_profile_content : string_ option;
    (*

    The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.

    *)
  2. authentication_profile_name : authentication_profile_name_string option;
    (*

    The name of the authentication profile.

    *)
}

Describes an authentication profile.

type nonrec authentication_profile_list = authentication_profile list
type nonrec describe_authentication_profiles_result = {
  1. authentication_profiles : authentication_profile_list option;
    (*

    The list of authentication profiles.

    *)
}
type nonrec describe_authentication_profiles_message = {
  1. authentication_profile_name : authentication_profile_name_string option;
    (*

    The name of the authentication profile to describe. If not specified then all authentication profiles owned by the account are listed.

    *)
}
type nonrec attribute_value_target = {
  1. attribute_value : string_ option;
    (*

    The value of the attribute.

    *)
}

Describes an attribute value.

type nonrec attribute_value_list = attribute_value_target list
type nonrec account_attribute = {
  1. attribute_values : attribute_value_list option;
    (*

    A list of attribute values.

    *)
  2. attribute_name : string_ option;
    (*

    The name of the attribute.

    *)
}

A name value pair that describes an aspect of an account.

type nonrec attribute_list = account_attribute list
type nonrec account_attribute_list = {
  1. account_attributes : attribute_list option;
    (*

    A list of attributes assigned to an account.

    *)
}
type nonrec attribute_name_list = string_ list
type nonrec describe_account_attributes_message = {
  1. attribute_names : attribute_name_list option;
    (*

    A list of attribute names.

    *)
}
type nonrec deregister_namespace_output_message = {
  1. status : namespace_registration_status option;
    (*

    The registration status of the cluster or serverless namespace.

    *)
}
type nonrec deregister_namespace_input_message = {
  1. consumer_identifiers : consumer_identifier_list;
    (*

    An array containing the ID of the consumer account that you want to deregister the cluster or serverless namespace from.

    *)
  2. namespace_identifier : namespace_identifier_union;
    (*

    The unique identifier of the cluster or serverless namespace that you want to deregister.

    *)
}
type nonrec delete_usage_limit_message = {
  1. usage_limit_id : string_;
    (*

    The identifier of the usage limit to delete.

    *)
}
type nonrec delete_tags_message = {
  1. tag_keys : tag_key_list;
    (*

    The tag key that you want to delete.

    *)
  2. resource_name : string_;
    (*

    The Amazon Resource Name (ARN) from which you want to remove the tag or tags. For example, arn:aws:redshift:us-east-2:123456789:cluster:t1.

    *)
}

Contains the output from the DeleteTags action.

type nonrec delete_snapshot_schedule_message = {
  1. schedule_identifier : string_;
    (*

    A unique identifier of the snapshot schedule to delete.

    *)
}
type nonrec invalid_snapshot_copy_grant_state_fault = {
  1. message : exception_message option;
}

The snapshot copy grant can't be deleted because it is used by one or more clusters.

type nonrec delete_snapshot_copy_grant_message = {
  1. snapshot_copy_grant_name : string_;
    (*

    The name of the snapshot copy grant to delete.

    *)
}

The result of the DeleteSnapshotCopyGrant action.

type nonrec delete_scheduled_action_message = {
  1. scheduled_action_name : string_;
    (*

    The name of the scheduled action to delete.

    *)
}
type nonrec delete_resource_policy_message = {
  1. resource_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the resource of which its resource policy is deleted.

    *)
}
type nonrec delete_redshift_idc_application_message = {
  1. redshift_idc_application_arn : string_;
    (*

    The ARN for a deleted Amazon Redshift IAM Identity Center application.

    *)
}
type nonrec partner_integration_input_message = {
  1. partner_name : partner_integration_partner_name;
    (*

    The name of the partner that is authorized to send data.

    *)
  2. database_name : partner_integration_database_name;
    (*

    The name of the database that receives data from the partner.

    *)
  3. cluster_identifier : partner_integration_cluster_identifier;
    (*

    The cluster identifier of the cluster that receives data from the partner.

    *)
  4. account_id : partner_integration_account_id;
    (*

    The Amazon Web Services account ID that owns the cluster.

    *)
}
type nonrec delete_integration_message = {
  1. integration_arn : integration_arn;
    (*

    The unique identifier of the integration to delete.

    *)
}
type nonrec invalid_hsm_configuration_state_fault = {
  1. message : exception_message option;
}

The specified HSM configuration is not in the available state, or it is still in use by one or more Amazon Redshift clusters.

type nonrec delete_hsm_configuration_message = {
  1. hsm_configuration_identifier : string_;
    (*

    The identifier of the Amazon Redshift HSM configuration to be deleted.

    *)
}
type nonrec invalid_hsm_client_certificate_state_fault = {
  1. message : exception_message option;
}

The specified HSM client certificate is not in the available state, or it is still in use by one or more Amazon Redshift clusters.

type nonrec delete_hsm_client_certificate_message = {
  1. hsm_client_certificate_identifier : string_;
    (*

    The identifier of the HSM client certificate to be deleted.

    *)
}
type nonrec delete_event_subscription_message = {
  1. subscription_name : string_;
    (*

    The name of the Amazon Redshift event notification subscription to be deleted.

    *)
}
type nonrec delete_endpoint_access_message = {
  1. endpoint_name : string_;
    (*

    The Redshift-managed VPC endpoint to delete.

    *)
}
type nonrec delete_custom_domain_association_message = {
  1. custom_domain_name : custom_domain_name_string;
    (*

    The custom domain name for the custom domain association.

    *)
  2. cluster_identifier : string_;
    (*

    The identifier of the cluster to delete a custom domain association for.

    *)
}
type nonrec invalid_cluster_subnet_state_fault = {
  1. message : exception_message option;
}

The state of the subnet is invalid.

type nonrec delete_cluster_subnet_group_message = {
  1. cluster_subnet_group_name : string_;
    (*

    The name of the cluster subnet group name to be deleted.

    *)
}
type nonrec delete_cluster_snapshot_result = {
  1. snapshot : snapshot option;
}
type nonrec delete_cluster_snapshot_message = {
  1. snapshot_cluster_identifier : string_ option;
    (*

    The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

    Constraints: Must be the name of valid cluster.

    *)
  2. snapshot_identifier : string_;
    (*

    The unique identifier of the manual snapshot to be deleted.

    Constraints: Must be the name of an existing snapshot that is in the available, failed, or cancelled state.

    *)
}
type nonrec delete_cluster_security_group_message = {
  1. cluster_security_group_name : string_;
    (*

    The name of the cluster security group to be deleted.

    *)
}
type nonrec delete_cluster_parameter_group_message = {
  1. parameter_group_name : string_;
    (*

    The name of the parameter group to be deleted.

    Constraints:

    • Must be the name of an existing cluster parameter group.
    • Cannot delete a default cluster parameter group.
    *)
}
type nonrec cluster_snapshot_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would result in the user exceeding the allowed number of cluster snapshots.

type nonrec cluster_snapshot_already_exists_fault = {
  1. message : exception_message option;
}

The value specified as a snapshot identifier is already used by an existing snapshot.

type nonrec delete_cluster_result = {
  1. cluster : cluster option;
}
type nonrec delete_cluster_message = {
  1. final_cluster_snapshot_retention_period : integer_optional option;
    (*

    The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.

    The value must be either -1 or an integer between 1 and 3,653.

    The default value is -1.

    *)
  2. final_cluster_snapshot_identifier : string_ option;
    (*

    The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided, SkipFinalClusterSnapshot must be false.

    Constraints:

    • Must be 1 to 255 alphanumeric characters.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    *)
  3. skip_final_cluster_snapshot : boolean_ option;
    (*

    Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true, a final cluster snapshot is not created. If false, a final cluster snapshot is created before the cluster is deleted.

    The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot is false.

    Default: false

    *)
  4. cluster_identifier : string_;
    (*

    The identifier of the cluster to be deleted.

    Constraints:

    • Must contain lowercase characters.
    • Must contain from 1 to 63 alphanumeric characters or hyphens.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    *)
}
type nonrec delete_authentication_profile_result = {
  1. authentication_profile_name : authentication_profile_name_string option;
    (*

    The name of the authentication profile that was deleted.

    *)
}
type nonrec delete_authentication_profile_message = {
  1. authentication_profile_name : authentication_profile_name_string;
    (*

    The name of the authentication profile to delete.

    *)
}
type nonrec deauthorize_data_share_message = {
  1. consumer_identifier : string_;
    (*

    The identifier of the data consumer that is to have authorization removed from the datashare. This identifier is an Amazon Web Services account ID or a keyword, such as ADX.

    *)
  2. data_share_arn : string_;
    (*

    The namespace Amazon Resource Name (ARN) of the datashare to remove authorization from.

    *)
}
type nonrec create_usage_limit_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. breach_action : usage_limit_breach_action option;
    (*

    The action that Amazon Redshift takes when the limit is reached. The default is log. For more information about this parameter, see UsageLimit.

    *)
  3. period : usage_limit_period option;
    (*

    The time period that the amount applies to. A weekly period begins on Sunday. The default is monthly.

    *)
  4. amount : long;
    (*

    The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB). The value must be a positive number.

    *)
  5. limit_type : usage_limit_limit_type;
    (*

    The type of limit. Depending on the feature type, this can be based on a time duration or data size. If FeatureType is spectrum, then LimitType must be data-scanned. If FeatureType is concurrency-scaling, then LimitType must be time. If FeatureType is cross-region-datasharing, then LimitType must be data-scanned. If FeatureType is extra-compute-for-automatic-optimization, then LimitType must be time.

    *)
  6. feature_type : usage_limit_feature_type;
    (*

    The Amazon Redshift feature that you want to limit.

    *)
  7. cluster_identifier : string_;
    (*

    The identifier of the cluster that you want to limit usage.

    *)
}
type nonrec create_tags_message = {
  1. tags : tag_list;
    (*

    One or more name/value pairs to add as tags to the specified resource. Each tag name is passed in with the parameter Key and the corresponding value is passed in with the parameter Value. The Key and Value parameters are separated by a comma (,). Separate multiple tags with a space. For example, --tags "Key"="owner","Value"="admin" "Key"="environment","Value"="test" "Key"="version","Value"="1.0".

    *)
  2. resource_name : string_;
    (*

    The Amazon Resource Name (ARN) to which you want to add the tag or tags. For example, arn:aws:redshift:us-east-2:123456789:cluster:t1.

    *)
}

Contains the output from the CreateTags action.

type nonrec create_snapshot_schedule_message = {
  1. next_invocations : integer_optional option;
  2. dry_run : boolean_optional option;
  3. tags : tag_list option;
    (*

    An optional set of tags you can use to search for the schedule.

    *)
  4. schedule_description : string_ option;
    (*

    The description of the snapshot schedule.

    *)
  5. schedule_identifier : string_ option;
    (*

    A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed for the identifier.

    *)
  6. schedule_definitions : schedule_definition_list option;
    (*

    The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".

    *)
}
type nonrec create_snapshot_copy_grant_result = {
  1. snapshot_copy_grant : snapshot_copy_grant option;
}
type nonrec create_snapshot_copy_grant_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. kms_key_id : string_ option;
    (*

    The unique identifier of the encrypted symmetric key to which to grant Amazon Redshift permission. If no key is specified, the default key is used.

    *)
  3. snapshot_copy_grant_name : string_;
    (*

    The name of the snapshot copy grant. This name must be unique in the region for the Amazon Web Services account.

    Constraints:

    • Must contain from 1 to 63 alphanumeric characters or hyphens.
    • Alphabetic characters must be lowercase.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    • Must be unique for all clusters within an Amazon Web Services account.
    *)
}

The result of the CreateSnapshotCopyGrant action.

type nonrec create_scheduled_action_message = {
  1. enable : boolean_optional option;
    (*

    If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about state of the scheduled action, see ScheduledAction.

    *)
  2. end_time : t_stamp option;
    (*

    The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more information about this parameter, see ScheduledAction.

    *)
  3. start_time : t_stamp option;
    (*

    The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more information about this parameter, see ScheduledAction.

    *)
  4. scheduled_action_description : string_ option;
    (*

    The description of the scheduled action.

    *)
  5. iam_role : string_;
    (*

    The IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.

    *)
  6. schedule : string_;
    (*

    The schedule in at( ) or cron( ) format. For more information about this parameter, see ScheduledAction.

    *)
  7. target_action : scheduled_action_type;
    (*

    A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this parameter, see ScheduledAction.

    *)
  8. scheduled_action_name : string_;
    (*

    The name of the scheduled action. The name must be unique within an account. For more information about this parameter, see ScheduledAction.

    *)
}
type nonrec redshift_idc_application_quota_exceeded_fault = {
  1. message : exception_message option;
}

The maximum number of Redshift IAM Identity Center applications was exceeded.

type nonrec redshift_idc_application_already_exists_fault = {
  1. message : exception_message option;
}

The application you attempted to add already exists.

type nonrec create_redshift_idc_application_result = {
  1. redshift_idc_application : redshift_idc_application option;
}
type nonrec create_redshift_idc_application_message = {
  1. sso_tag_keys : tag_key_list option;
    (*

    A list of tags keys that Redshift Identity Center applications copy to IAM Identity Center. For each input key, the tag corresponding to the key-value pair is propagated.

    *)
  2. tags : tag_list option;
    (*

    A list of tags.

    *)
  3. application_type : application_type option;
    (*

    The type of application being created. Valid values are None or Lakehouse. Use Lakehouse to enable Amazon Redshift federated permissions on cluster.

    *)
  4. service_integrations : service_integration_list option;
    (*

    A collection of service integrations for the Redshift IAM Identity Center application.

    *)
  5. authorized_token_issuer_list : authorized_token_issuer_list option;
    (*

    The token issuer list for the Amazon Redshift IAM Identity Center application instance.

    *)
  6. iam_role_arn : string_;
    (*

    The IAM role ARN for the Amazon Redshift IAM Identity Center application instance. It has the required permissions to be assumed and invoke the IDC Identity Center API.

    *)
  7. idc_display_name : idc_display_name_string;
    (*

    The display name for the Amazon Redshift IAM Identity Center application instance. It appears in the console.

    *)
  8. identity_namespace : identity_namespace_string option;
    (*

    The namespace for the Amazon Redshift IAM Identity Center application instance. It determines which managed application verifies the connection token.

    *)
  9. redshift_idc_application_name : redshift_idc_application_name;
    (*

    The name of the Redshift application in IAM Identity Center.

    *)
  10. idc_instance_arn : string_;
    (*

    The Amazon resource name (ARN) of the IAM Identity Center instance where Amazon Redshift creates a new managed application.

    *)
}
type nonrec integration_target_not_found_fault = {
  1. message : exception_message option;
}

The specified integration target can't be found.

type nonrec integration_source_not_found_fault = {
  1. message : exception_message option;
}

The specified integration source can't be found.

type nonrec integration_quota_exceeded_fault = {
  1. message : exception_message option;
}

You can't create any more zero-ETL or S3 event integrations because the quota has been reached.

type nonrec create_integration_message = {
  1. description : integration_description option;
    (*

    A description of the integration.

    *)
  2. additional_encryption_context : encryption_context_map option;
    (*

    An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

    You can only include this parameter if you specify the KMSKeyId parameter.

    *)
  3. tag_list : tag_list option;
    (*

    A list of tags.

    *)
  4. kms_key_id : string_ option;
    (*

    An Key Management Service (KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default Amazon Web Services owned key is used.

    *)
  5. integration_name : integration_name;
    (*

    The name of the integration.

    *)
  6. target_arn : target_arn;
    (*

    The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

    *)
  7. source_arn : source_arn;
    (*

    The Amazon Resource Name (ARN) of the database to use as the source for replication.

    *)
}
type nonrec hsm_configuration_quota_exceeded_fault = {
  1. message : exception_message option;
}

The quota for HSM configurations has been reached. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec hsm_configuration_already_exists_fault = {
  1. message : exception_message option;
}

There is already an existing Amazon Redshift HSM configuration with the specified identifier.

type nonrec create_hsm_configuration_result = {
  1. hsm_configuration : hsm_configuration option;
}
type nonrec create_hsm_configuration_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. hsm_server_public_certificate : string_;
    (*

    The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.

    *)
  3. hsm_partition_password : string_;
    (*

    The password required to access the HSM partition.

    *)
  4. hsm_partition_name : string_;
    (*

    The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.

    *)
  5. hsm_ip_address : string_;
    (*

    The IP address that the Amazon Redshift cluster must use to access the HSM.

    *)
  6. description : string_;
    (*

    A text description of the HSM configuration to be created.

    *)
  7. hsm_configuration_identifier : string_;
    (*

    The identifier to be assigned to the new Amazon Redshift HSM configuration.

    *)
}
type nonrec hsm_client_certificate_quota_exceeded_fault = {
  1. message : exception_message option;
}

The quota for HSM client certificates has been reached. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec hsm_client_certificate_already_exists_fault = {
  1. message : exception_message option;
}

There is already an existing Amazon Redshift HSM client certificate with the specified identifier.

type nonrec create_hsm_client_certificate_result = {
  1. hsm_client_certificate : hsm_client_certificate option;
}
type nonrec create_hsm_client_certificate_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. hsm_client_certificate_identifier : string_;
    (*

    The identifier to be assigned to the new HSM client certificate that the cluster will use to connect to the HSM to use the database encryption keys.

    *)
}
type nonrec event_subscription_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would exceed the allowed number of event subscriptions for this account. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec create_event_subscription_result = {
  1. event_subscription : event_subscription option;
}
type nonrec create_event_subscription_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. enabled : boolean_optional option;
    (*

    A boolean value; set to true to activate the subscription, and set to false to create the subscription but not activate it.

    *)
  3. severity : string_ option;
    (*

    Specifies the Amazon Redshift event severity to be published by the event notification subscription.

    Values: ERROR, INFO

    *)
  4. event_categories : event_categories_list option;
    (*

    Specifies the Amazon Redshift event categories to be published by the event notification subscription.

    Values: configuration, management, monitoring, security, pending

    *)
  5. source_ids : source_ids_list option;
    (*

    A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.

    Example: my-cluster-1, my-cluster-2

    Example: my-snapshot-20131010

    *)
  6. source_type : string_ option;
    (*

    The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.

    Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.

    *)
  7. sns_topic_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.

    *)
  8. subscription_name : string_;
    (*

    The name of the event subscription to be created.

    Constraints:

    • Cannot be null, empty, or blank.
    • Must contain from 1 to 255 alphanumeric characters or hyphens.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    *)
}
type nonrec endpoints_per_cluster_limit_exceeded_fault = {
  1. message : exception_message option;
}

The number of Redshift-managed VPC endpoints per cluster has exceeded its limit.

type nonrec endpoints_per_authorization_limit_exceeded_fault = {
  1. message : exception_message option;
}

The number of Redshift-managed VPC endpoints per authorization has exceeded its limit.

type nonrec endpoint_already_exists_fault = {
  1. message : exception_message option;
}

The account already has a Redshift-managed VPC endpoint with the given identifier.

type nonrec access_to_cluster_denied_fault = {
  1. message : exception_message option;
}

You are not authorized to access the cluster.

type nonrec create_endpoint_access_message = {
  1. vpc_security_group_ids : vpc_security_group_id_list option;
    (*

    The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

    *)
  2. subnet_group_name : string_;
    (*

    The subnet group from which Amazon Redshift chooses the subnet to deploy the endpoint.

    *)
  3. endpoint_name : string_;
    (*

    The Redshift-managed VPC endpoint name.

    An endpoint name must contain 1-30 characters. Valid characters are A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter. The name can't contain two consecutive hyphens or end with a hyphen.

    *)
  4. resource_owner : string_ option;
    (*

    The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.

    *)
  5. cluster_identifier : string_ option;
    (*

    The cluster identifier of the cluster to access.

    *)
}
type nonrec create_custom_domain_association_result = {
  1. custom_domain_cert_expiry_time : string_ option;
    (*

    The expiration time for the certificate for the custom domain.

    *)
  2. cluster_identifier : string_ option;
    (*

    The identifier of the cluster that the custom domain is associated with.

    *)
  3. custom_domain_certificate_arn : custom_domain_certificate_arn_string option;
    (*

    The Amazon Resource Name (ARN) for the certificate associated with the custom domain name.

    *)
  4. custom_domain_name : custom_domain_name_string option;
    (*

    The custom domain name for the association result.

    *)
}
type nonrec create_custom_domain_association_message = {
  1. cluster_identifier : string_;
    (*

    The cluster identifier that the custom domain is associated with.

    *)
  2. custom_domain_certificate_arn : custom_domain_certificate_arn_string;
    (*

    The certificate Amazon Resource Name (ARN) for the custom domain name association.

    *)
  3. custom_domain_name : custom_domain_name_string;
    (*

    The custom domain name for a custom domain association.

    *)
}
type nonrec cluster_subnet_group_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would result in user exceeding the allowed number of cluster subnet groups. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec cluster_subnet_group_already_exists_fault = {
  1. message : exception_message option;
}

A ClusterSubnetGroupName is already used by an existing cluster subnet group.

type nonrec create_cluster_subnet_group_result = {
  1. cluster_subnet_group : cluster_subnet_group option;
}
type nonrec create_cluster_subnet_group_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. subnet_ids : subnet_identifier_list;
    (*

    An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.

    *)
  3. description : string_;
    (*

    A description for the subnet group.

    *)
  4. cluster_subnet_group_name : string_;
    (*

    The name for the subnet group. Amazon Redshift stores the value as a lowercase string.

    Constraints:

    • Must contain no more than 255 alphanumeric characters or hyphens.
    • Must not be "Default".
    • Must be unique for all subnet groups that are created by your Amazon Web Services account.

    Example: examplesubnetgroup

    *)
}
type nonrec create_cluster_snapshot_result = {
  1. snapshot : snapshot option;
}
type nonrec create_cluster_snapshot_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. manual_snapshot_retention_period : integer_optional option;
    (*

    The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.

    The value must be either -1 or an integer between 1 and 3,653.

    The default value is -1.

    *)
  3. cluster_identifier : string_;
    (*

    The cluster identifier for which you want a snapshot.

    *)
  4. snapshot_identifier : string_;
    (*

    A unique identifier for the snapshot that you are requesting. This identifier must be unique for all snapshots within the Amazon Web Services account.

    Constraints:

    • Cannot be null, empty, or blank
    • Must contain from 1 to 255 alphanumeric characters or hyphens
    • First character must be a letter
    • Cannot end with a hyphen or contain two consecutive hyphens

    Example: my-snapshot-id

    *)
}
type nonrec cluster_security_group_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would result in the user exceeding the allowed number of cluster security groups. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec cluster_security_group_already_exists_fault = {
  1. message : exception_message option;
}

A cluster security group with the same name already exists.

type nonrec create_cluster_security_group_result = {
  1. cluster_security_group : cluster_security_group option;
}
type nonrec create_cluster_security_group_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. description : string_;
    (*

    A description for the security group.

    *)
  3. cluster_security_group_name : string_;
    (*

    The name for the security group. Amazon Redshift stores the value as a lowercase string.

    Constraints:

    • Must contain no more than 255 alphanumeric characters or hyphens.
    • Must not be "Default".
    • Must be unique for all security groups that are created by your Amazon Web Services account.

    Example: examplesecuritygroup

    *)
}
type nonrec cluster_parameter_group_quota_exceeded_fault = {
  1. message : exception_message option;
}

The request would result in the user exceeding the allowed number of cluster parameter groups. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

type nonrec cluster_parameter_group_already_exists_fault = {
  1. message : exception_message option;
}

A cluster parameter group with the same name already exists.

type nonrec create_cluster_parameter_group_result = {
  1. cluster_parameter_group : cluster_parameter_group option;
}
type nonrec create_cluster_parameter_group_message = {
  1. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  2. description : string_;
    (*

    A description of the parameter group.

    *)
  3. parameter_group_family : string_;
    (*

    The Amazon Redshift engine version to which the cluster parameter group applies. The cluster engine version determines the set of parameters.

    To get a list of valid parameter group family names, you can call DescribeClusterParameterGroups. By default, Amazon Redshift returns a list of all the parameter groups that are owned by your Amazon Web Services account, including the default parameter groups for each Amazon Redshift engine version. The parameter group family names associated with the default parameter groups provide you the valid values. For example, a valid family name is "redshift-1.0".

    *)
  4. parameter_group_name : string_;
    (*

    The name of the cluster parameter group.

    Constraints:

    • Must be 1 to 255 alphanumeric characters or hyphens
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    • Must be unique withing your Amazon Web Services account.

    This value is stored as a lower-case string.

    *)
}
type nonrec create_cluster_result = {
  1. cluster : cluster option;
}
type nonrec create_cluster_message = {
  1. extra_compute_for_automatic_optimization : boolean_optional option;
    (*

    If true, allocates additional compute resources for running automatic optimization operations.

    Default: false

    *)
  2. catalog_name : catalog_name_string option;
    (*

    The name of the Glue data catalog that will be associated with the cluster enabled with Amazon Redshift federated permissions.

    Constraints:

    • Must contain at least one lowercase letter.
    • Can only contain lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-).

    Pattern: ^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$

    Example: my-catalog_01

    *)
  3. redshift_idc_application_arn : string_ option;
    (*

    The Amazon resource name (ARN) of the Amazon Redshift IAM Identity Center application.

    *)
  4. multi_a_z : boolean_optional option;
    (*

    If true, Amazon Redshift will deploy the cluster in two Availability Zones (AZ).

    *)
  5. ip_address_type : string_ option;
    (*

    The IP address types that the cluster supports. Possible values are ipv4 and dualstack.

    *)
  6. master_password_secret_kms_key_id : string_ option;
    (*

    The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret. You can only use this parameter if ManageMasterPassword is true.

    *)
  7. manage_master_password : boolean_optional option;
    (*

    If true, Amazon Redshift uses Secrets Manager to manage this cluster's admin credentials. You can't use MasterUserPassword if ManageMasterPassword is true. If ManageMasterPassword is false or not set, Amazon Redshift uses MasterUserPassword for the admin user account's password.

    *)
  8. load_sample_data : string_ option;
    (*

    A flag that specifies whether to load sample data once the cluster is created.

    *)
  9. default_iam_role_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was created.

    *)
  10. aqua_configuration_status : aqua_configuration_status option;
    (*

    This parameter is retired. It does not set the AQUA configuration status. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).

    *)
  11. availability_zone_relocation : boolean_optional option;
    (*

    The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is created.

    *)
  12. snapshot_schedule_identifier : string_ option;
    (*

    A unique identifier for the snapshot schedule.

    *)
  13. maintenance_track_name : string_ option;
    (*

    An optional parameter for the name of the maintenance track for the cluster. If you don't provide a maintenance track name, the cluster is assigned to the current track.

    *)
  14. iam_roles : iam_role_arn_list option;
    (*

    A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon Resource Name (ARN) format.

    The maximum number of IAM roles that you can associate is subject to a quota. For more information, go to Quotas and limits in the Amazon Redshift Cluster Management Guide.

    *)
  15. additional_info : string_ option;
    (*

    Reserved.

    *)
  16. enhanced_vpc_routing : boolean_optional option;
    (*

    An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

    If this option is true, enhanced VPC routing is enabled.

    Default: false

    *)
  17. kms_key_id : string_ option;
    (*

    The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.

    *)
  18. tags : tag_list option;
    (*

    A list of tag instances.

    *)
  19. elastic_ip : string_ option;
    (*

    The Elastic IP (EIP) address for the cluster.

    Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. Don't specify the Elastic IP address for a publicly accessible cluster with availability zone relocation turned on. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.

    *)
  20. hsm_configuration_identifier : string_ option;
    (*

    Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

    *)
  21. hsm_client_certificate_identifier : string_ option;
    (*

    Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

    *)
  22. encrypted : boolean_optional option;
    (*

    If true, the data in the cluster is encrypted at rest. If you set the value on this parameter to false, the request will fail.

    Default: true

    *)
  23. publicly_accessible : boolean_optional option;
    (*

    If true, the cluster can be accessed from a public network.

    Default: false

    *)
  24. number_of_nodes : integer_optional option;
    (*

    The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node.

    For information about determining how many nodes you need, go to Working with Clusters in the Amazon Redshift Cluster Management Guide.

    If you don't specify this parameter, you get a single-node cluster. When requesting a multi-node cluster, you must specify the number of nodes that you want in the cluster.

    Default: 1

    Constraints: Value must be at least 1 and no more than 100.

    *)
  25. allow_version_upgrade : boolean_optional option;
    (*

    If true, major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster.

    When a new major version of the Amazon Redshift engine is released, you can request that the service automatically apply upgrades during the maintenance window to the Amazon Redshift engine that is running on your cluster.

    Default: true

    *)
  26. cluster_version : string_ option;
    (*

    The version of the Amazon Redshift engine software that you want to deploy on the cluster.

    The version selected runs on all the nodes in the cluster.

    Constraints: Only version 1.0 is currently available.

    Example: 1.0

    *)
  27. port : integer_optional option;
    (*

    The port number on which the cluster accepts incoming connections.

    The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections.

    Default: 5439

    Valid Values:

    • For clusters with RG or RA3 nodes - Select a port within the ranges 5431-5455 or 8191-8215. (If you have an existing cluster with RG or RA3 nodes, it isn't required that you change the port to these ranges.)
    • For clusters with dc2 nodes - Select a port within the range 1150-65535.
    *)
  28. manual_snapshot_retention_period : integer_optional option;
    (*

    The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

    The value must be either -1 or an integer between 1 and 3,653.

    *)
  29. automated_snapshot_retention_period : integer_optional option;
    (*

    The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with CreateClusterSnapshot.

    You can't disable automated snapshots for RG or RA3 node types. Set the automated retention period from 1-35 days.

    Default: 1

    Constraints: Must be a value from 0 to 35.

    *)
  30. cluster_parameter_group_name : string_ option;
    (*

    The name of the parameter group to be associated with this cluster.

    Default: The default Amazon Redshift cluster parameter group. For information about the default parameter group, go to Working with Amazon Redshift Parameter Groups

    Constraints:

    • Must be 1 to 255 alphanumeric characters or hyphens.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    *)
  31. preferred_maintenance_window : string_ option;
    (*

    The weekly time range (in UTC) during which automated cluster maintenance can occur.

    Format: ddd:hh24:mi-ddd:hh24:mi

    Default: A 30-minute window selected at random from an 8-hour block of time per region, occurring on a random day of the week. For more information about the time blocks for each region, see Maintenance Windows in Amazon Redshift Cluster Management Guide.

    Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

    Constraints: Minimum 30-minute window.

    *)
  32. availability_zone : string_ option;
    (*

    The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.

    Default: A random, system-chosen Availability Zone in the region that is specified by the endpoint.

    Example: us-east-2d

    Constraint: The specified Availability Zone must be in the same region as the current endpoint.

    *)
  33. cluster_subnet_group_name : string_ option;
    (*

    The name of a cluster subnet group to be associated with this cluster.

    If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).

    *)
  34. vpc_security_group_ids : vpc_security_group_id_list option;
    (*

    A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.

    Default: The default VPC security group is associated with the cluster.

    *)
  35. cluster_security_groups : cluster_security_group_name_list option;
    (*

    A list of security groups to be associated with this cluster.

    Default: The default cluster security group for Amazon Redshift.

    *)
  36. master_user_password : sensitive_string option;
    (*

    The password associated with the admin user account for the cluster that is being created.

    You can't use MasterUserPassword if ManageMasterPassword is true.

    Constraints:

    • Must be between 8 and 64 characters in length.
    • Must contain at least one uppercase letter.
    • Must contain at least one lowercase letter.
    • Must contain one number.
    • Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), ], [/], or [@]. } }
    *)
  37. master_username : string_;
    (*

    The user name associated with the admin user account for the cluster that is being created.

    Constraints:

    • Must be 1 - 128 alphanumeric characters or hyphens. The user name can't be PUBLIC.
    • Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen.
    • The first character must be a letter.
    • Must not contain a colon (:) or a slash (/).
    • Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
    *)
  38. node_type : string_;
    (*

    The node type to be provisioned for the cluster. For information about node types, go to Working with Clusters in the Amazon Redshift Cluster Management Guide.

    Valid Values: dc2.large | dc2.8xlarge| rg.xlarge | rg.4xlarge | ra3.large | ra3.xlplus | ra3.4xlarge | ra3.16xlarge

    *)
  39. cluster_type : string_ option;
    (*

    The type of the cluster. When cluster type is specified as

    • single-node, the NumberOfNodes parameter is not required.
    • multi-node, the NumberOfNodes parameter is required.

    Valid Values: multi-node | single-node

    Default: multi-node

    *)
  40. cluster_identifier : string_;
    (*

    A unique identifier for the cluster. You use this identifier to refer to the cluster for any subsequent cluster operations such as deleting or modifying. The identifier also appears in the Amazon Redshift console.

    Constraints:

    • Must contain from 1 to 63 alphanumeric characters or hyphens.
    • Alphabetic characters must be lowercase.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    • Must be unique for all clusters within an Amazon Web Services account.

    Example: myexamplecluster

    *)
  41. db_name : string_ option;
    (*

    The name of the first database to be created when the cluster is created.

    To create additional databases after the cluster is created, connect to the cluster with a SQL client and use SQL commands to create a database. For more information, go to Create a Database in the Amazon Redshift Database Developer Guide.

    Default: dev

    Constraints:

    • Must contain 1 to 64 alphanumeric characters.
    • Must contain only lowercase letters.
    • Cannot be a word that is reserved by the service. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
    *)
}
type nonrec authentication_profile_already_exists_fault = {
  1. message : exception_message option;
}

The authentication profile already exists.

type nonrec create_authentication_profile_result = {
  1. authentication_profile_content : string_ option;
    (*

    The content of the authentication profile in JSON format.

    *)
  2. authentication_profile_name : authentication_profile_name_string option;
    (*

    The name of the authentication profile that was created.

    *)
}
type nonrec create_authentication_profile_message = {
  1. authentication_profile_content : string_;
    (*

    The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.

    *)
  2. authentication_profile_name : authentication_profile_name_string;
    (*

    The name of the authentication profile to be created.

    *)
}
type nonrec copy_cluster_snapshot_result = {
  1. snapshot : snapshot option;
}
type nonrec copy_cluster_snapshot_message = {
  1. manual_snapshot_retention_period : integer_optional option;
    (*

    The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.

    The value must be either -1 or an integer between 1 and 3,653.

    The default value is -1.

    *)
  2. target_snapshot_identifier : string_;
    (*

    The identifier given to the new manual snapshot.

    Constraints:

    • Cannot be null, empty, or blank.
    • Must contain from 1 to 255 alphanumeric characters or hyphens.
    • First character must be a letter.
    • Cannot end with a hyphen or contain two consecutive hyphens.
    • Must be unique for the Amazon Web Services account that is making the request.
    *)
  3. source_snapshot_cluster_identifier : string_ option;
    (*

    The identifier of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

    Constraints:

    • Must be the identifier for a valid cluster.
    *)
  4. source_snapshot_identifier : string_;
    (*

    The identifier for the source snapshot.

    Constraints:

    • Must be the identifier for a valid automated snapshot whose state is available.
    *)
}
type nonrec cancel_resize_message = {
  1. cluster_identifier : string_;
    (*

    The unique identifier for the cluster that you want to cancel a resize operation for.

    *)
}
type nonrec batch_modify_cluster_snapshots_limit_exceeded_fault = {
  1. message : exception_message option;
}

The maximum number for snapshot identifiers has been reached. The limit is 100.

type nonrec batch_snapshot_operation_errors = snapshot_error_message list
type nonrec batch_modify_cluster_snapshots_output_message = {
  1. errors : batch_snapshot_operation_errors option;
    (*

    A list of any errors returned.

    *)
  2. resources : snapshot_identifier_list option;
    (*

    A list of the snapshots that were modified.

    *)
}
type nonrec batch_modify_cluster_snapshots_message = {
  1. force : boolean_ option;
    (*

    A boolean value indicating whether to override an exception if the retention period has passed.

    *)
  2. manual_snapshot_retention_period : integer_optional option;
    (*

    The number of days that a manual snapshot is retained. If you specify the value -1, the manual snapshot is retained indefinitely.

    The number must be either -1 or an integer between 1 and 3,653.

    If you decrease the manual snapshot retention period from its current value, existing manual snapshots that fall outside of the new retention period will return an error. If you want to suppress the errors and delete the snapshots, use the force option.

    *)
  3. snapshot_identifier_list : snapshot_identifier_list;
    (*

    A list of snapshot identifiers you want to modify.

    *)
}
type nonrec batch_delete_request_size_exceeded_fault = {
  1. message : exception_message option;
}

The maximum number for a batch delete of snapshots has been reached. The limit is 100.

type nonrec batch_snapshot_operation_error_list = snapshot_error_message list
type nonrec batch_delete_cluster_snapshots_result = {
  1. errors : batch_snapshot_operation_error_list option;
    (*

    A list of any errors returned.

    *)
  2. resources : snapshot_identifier_list option;
    (*

    A list of the snapshot identifiers that were deleted.

    *)
}
type nonrec delete_cluster_snapshot_message_list = delete_cluster_snapshot_message list
type nonrec batch_delete_cluster_snapshots_request = {
  1. identifiers : delete_cluster_snapshot_message_list;
    (*

    A list of identifiers for the snapshots that you want to delete.

    *)
}
type nonrec authorization_quota_exceeded_fault = {
  1. message : exception_message option;
}

The authorization quota for the cluster security group has been reached.

type nonrec authorization_already_exists_fault = {
  1. message : exception_message option;
}

The specified CIDR block or EC2 security group is already authorized for the specified cluster security group.

type nonrec authorize_snapshot_access_result = {
  1. snapshot : snapshot option;
}
type nonrec authorize_snapshot_access_message = {
  1. account_with_restore_access : string_;
    (*

    The identifier of the Amazon Web Services account authorized to restore the specified snapshot.

    To share a snapshot with Amazon Web Services Support, specify amazon-redshift-support.

    *)
  2. snapshot_cluster_identifier : string_ option;
    (*

    The identifier of the cluster the snapshot was created from.

    • If the snapshot to access doesn't exist and the associated IAM policy doesn't allow access to all (*) snapshots - This parameter is required. Otherwise, permissions aren't available to check if the snapshot exists.
    • If the snapshot to access exists - This parameter isn't required. Redshift can retrieve the cluster identifier and use it to validate snapshot authorization.
    *)
  3. snapshot_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the snapshot to authorize access to.

    *)
  4. snapshot_identifier : string_ option;
    (*

    The identifier of the snapshot the account is authorized to restore.

    *)
}
type nonrec endpoint_authorizations_per_cluster_limit_exceeded_fault = {
  1. message : exception_message option;
}

The number of endpoint authorizations per cluster has exceeded its limit.

type nonrec endpoint_authorization_already_exists_fault = {
  1. message : exception_message option;
}

The authorization already exists for this endpoint.

type nonrec authorize_endpoint_access_message = {
  1. vpc_ids : vpc_identifier_list option;
    (*

    The virtual private cloud (VPC) identifiers to grant access to.

    *)
  2. account : string_;
    (*

    The Amazon Web Services account ID to grant access to.

    *)
  3. cluster_identifier : string_ option;
    (*

    The cluster identifier of the cluster to grant access to.

    *)
}
type nonrec authorize_data_share_message = {
  1. allow_writes : boolean_optional option;
    (*

    If set to true, allows write operations for a datashare.

    *)
  2. consumer_identifier : string_;
    (*

    The identifier of the data consumer that is authorized to access the datashare. This identifier is an Amazon Web Services account ID or a keyword, such as ADX.

    *)
  3. data_share_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the datashare namespace that producers are to authorize sharing for.

    *)
}
type nonrec authorize_cluster_security_group_ingress_result = {
  1. cluster_security_group : cluster_security_group option;
}
type nonrec authorize_cluster_security_group_ingress_message = {
  1. ec2_security_group_owner_id : string_ option;
    (*

    The Amazon Web Services account number of the owner of the security group specified by the EC2SecurityGroupName parameter. The Amazon Web Services Access Key ID is not an acceptable value.

    Example: 111122223333

    *)
  2. ec2_security_group_name : string_ option;
    (*

    The EC2 security group to be added the Amazon Redshift security group.

    *)
  3. cidri_p : string_ option;
    (*

    The IP range to be added the Amazon Redshift security group.

    *)
  4. cluster_security_group_name : string_;
    (*

    The name of the security group to which the ingress rule is added.

    *)
}
type nonrec associate_data_share_consumer_message = {
  1. allow_writes : boolean_optional option;
    (*

    If set to true, allows write operations for a datashare.

    *)
  2. consumer_region : string_ option;
    (*

    From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.

    *)
  3. consumer_arn : string_ option;
    (*

    The Amazon Resource Name (ARN) of the consumer namespace associated with the datashare.

    *)
  4. associate_entire_account : boolean_optional option;
    (*

    A value that specifies whether the datashare is associated with the entire account.

    *)
  5. data_share_arn : string_;
    (*

    The Amazon Resource Name (ARN) of the datashare that the consumer is to use.

    *)
}
type nonrec accept_reserved_node_exchange_output_message = {
  1. exchanged_reserved_node : reserved_node option;
}
type nonrec accept_reserved_node_exchange_input_message = {
  1. target_reserved_node_offering_id : string_;
    (*

    The unique identifier of the DC2 Reserved Node offering to be used for the exchange. You can obtain the value for the parameter by calling GetReservedNodeExchangeOfferings

    *)
  2. reserved_node_id : string_;
    (*

    A string representing the node identifier of the DC1 Reserved Node to be exchanged.

    *)
}