Skip to content

Commit

Permalink
Regenerating amazonka-redshift from latest service definition
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanhay committed Nov 29, 2016
1 parent 0df4ee5 commit e0c9f54
Show file tree
Hide file tree
Showing 38 changed files with 313 additions and 224 deletions.
9 changes: 7 additions & 2 deletions amazonka-redshift/gen/Network/AWS/Redshift.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@
--
-- __Amazon Redshift__
--
-- __Overview__ This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <http://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html Using the Amazon Redshift Management Interfaces > .
-- __Overview__
--
-- This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <http://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html Using the Amazon Redshift Management Interfaces> .
--
-- Amazon Redshift manages all the work of setting up, operating, and scaling a data warehouse: provisioning capacity, monitoring and backing up the cluster, and applying patches and upgrades to the Amazon Redshift engine. You can focus on using your data to acquire new insights for your business and customers.
--
-- If you are a first-time user of Amazon Redshift, we recommend that you begin by reading the The <http://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html Amazon Redshift Getting Started Guide>
-- If you are a first-time user of Amazon Redshift, we recommend that you begin by reading the <http://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html Amazon Redshift Getting Started Guide> .
--
-- If you are a database developer, the <http://docs.aws.amazon.com/redshift/latest/dg/welcome.html Amazon Redshift Database Developer Guide> explains how to design, build, query, and maintain the databases that make up your data warehouse.
--
Expand Down Expand Up @@ -504,6 +506,7 @@ module Network.AWS.Redshift
, Cluster
, cluster
, cRestoreStatus
, cEnhancedVPCRouting
, cClusterSnapshotCopyStatus
, cClusterRevisionNumber
, cPubliclyAccessible
Expand Down Expand Up @@ -747,6 +750,7 @@ module Network.AWS.Redshift
-- ** PendingModifiedValues
, PendingModifiedValues
, pendingModifiedValues
, pmvEnhancedVPCRouting
, pmvMasterUserPassword
, pmvPubliclyAccessible
, pmvAutomatedSnapshotRetentionPeriod
Expand Down Expand Up @@ -806,6 +810,7 @@ module Network.AWS.Redshift
, sStatus
, sRestorableNodeTypes
, sAccountsWithRestoreAccess
, sEnhancedVPCRouting
, sSnapshotIdentifier
, sEncryptedWithHSM
, sMasterUsername
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ data CopyClusterSnapshot = CopyClusterSnapshot'
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'ccsSourceSnapshotClusterIdentifier' - 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.
-- * 'ccsSourceSnapshotClusterIdentifier' - 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.
--
-- * 'ccsSourceSnapshotIdentifier' - The identifier for the source snapshot. Constraints: * Must be the identifier for a valid automated snapshot whose state is @available@ .
-- * 'ccsSourceSnapshotIdentifier' - The identifier for the source snapshot. Constraints: * Must be the identifier for a valid automated snapshot whose state is @available@ .
--
-- * 'ccsTargetSnapshotIdentifier' - 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 AWS account that is making the request.
-- * 'ccsTargetSnapshotIdentifier' - 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 AWS account that is making the request.
copyClusterSnapshot
:: Text -- ^ 'ccsSourceSnapshotIdentifier'
-> Text -- ^ 'ccsTargetSnapshotIdentifier'
Expand All @@ -81,15 +81,15 @@ copyClusterSnapshot pSourceSnapshotIdentifier_ pTargetSnapshotIdentifier_ =
, _ccsTargetSnapshotIdentifier = pTargetSnapshotIdentifier_
}

-- | 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.
-- | 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.
ccsSourceSnapshotClusterIdentifier :: Lens' CopyClusterSnapshot (Maybe Text)
ccsSourceSnapshotClusterIdentifier = lens _ccsSourceSnapshotClusterIdentifier (\ s a -> s{_ccsSourceSnapshotClusterIdentifier = a});

-- | The identifier for the source snapshot. Constraints: * Must be the identifier for a valid automated snapshot whose state is @available@ .
-- | The identifier for the source snapshot. Constraints: * Must be the identifier for a valid automated snapshot whose state is @available@ .
ccsSourceSnapshotIdentifier :: Lens' CopyClusterSnapshot Text
ccsSourceSnapshotIdentifier = lens _ccsSourceSnapshotIdentifier (\ s a -> s{_ccsSourceSnapshotIdentifier = a});

-- | 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 AWS account that is making the request.
-- | 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 AWS account that is making the request.
ccsTargetSnapshotIdentifier :: Lens' CopyClusterSnapshot Text
ccsTargetSnapshotIdentifier = lens _ccsTargetSnapshotIdentifier (\ s a -> s{_ccsTargetSnapshotIdentifier = a});

Expand Down
Loading

0 comments on commit e0c9f54

Please sign in to comment.