/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the rds-2014-10-31.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.RDS.Model { /// /// Container for the parameters to the StartExportTask operation. /// Starts an export of DB snapshot or DB cluster data to Amazon S3. The provided IAM /// role must have access to the S3 bucket. /// /// /// /// You can't export snapshot data from RDS Custom DB instances. /// /// /// /// You can't export cluster data from Multi-AZ DB clusters. /// /// /// /// For more information on exporting DB snapshot data, see Exporting /// DB snapshot data to Amazon S3 in the Amazon RDS User Guide or Exporting /// DB cluster snapshot data to Amazon S3 in the Amazon Aurora User Guide. /// /// /// /// For more information on exporting DB cluster data, see Exporting /// DB cluster data to Amazon S3 in the Amazon Aurora User Guide. /// /// public partial class StartExportTaskRequest : AmazonRDSRequest { private List _exportOnly = new List(); private string _exportTaskIdentifier; private string _iamRoleArn; private string _kmsKeyId; private string _s3BucketName; private string _s3Prefix; private string _sourceArn; /// /// Gets and sets the property ExportOnly. /// /// The data to be exported from the snapshot or cluster. If this parameter is not provided, /// all of the data is exported. Valid values are the following: /// ///
  • /// /// database - Export all the data from a specified database. /// ///
  • /// /// database.table table-name - Export a table of the snapshot or /// cluster. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora /// MySQL. /// ///
  • /// /// database.schema schema-name - Export a database schema of the /// snapshot or cluster. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL. /// ///
  • /// /// database.schema.table table-name - Export a table of the database /// schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL. /// ///
///
public List ExportOnly { get { return this._exportOnly; } set { this._exportOnly = value; } } // Check to see if ExportOnly property is set internal bool IsSetExportOnly() { return this._exportOnly != null && this._exportOnly.Count > 0; } /// /// Gets and sets the property ExportTaskIdentifier. /// /// A unique identifier for the export task. This ID isn't an identifier for the Amazon /// S3 bucket where the data is to be exported. /// /// [AWSProperty(Required=true)] public string ExportTaskIdentifier { get { return this._exportTaskIdentifier; } set { this._exportTaskIdentifier = value; } } // Check to see if ExportTaskIdentifier property is set internal bool IsSetExportTaskIdentifier() { return this._exportTaskIdentifier != null; } /// /// Gets and sets the property IamRoleArn. /// /// The name of the IAM role to use for writing to the Amazon S3 bucket when exporting /// a snapshot or cluster. /// /// /// /// In the IAM policy attached to your IAM role, include the following required actions /// to allow the transfer of files from Amazon RDS or Amazon Aurora to an S3 bucket: /// ///
  • /// /// s3:PutObject* /// ///
  • /// /// s3:GetObject* /// ///
  • /// /// s3:ListBucket /// ///
  • /// /// s3:DeleteObject* /// ///
  • /// /// s3:GetBucketLocation /// ///
/// /// In the policy, include the resources to identify the S3 bucket and objects in the /// bucket. The following list of resources shows the Amazon Resource Name (ARN) format /// for accessing S3: /// ///
  • /// /// arn:aws:s3:::your-s3-bucket /// ///
  • /// /// arn:aws:s3:::your-s3-bucket/* /// ///
///
[AWSProperty(Required=true)] public string IamRoleArn { get { return this._iamRoleArn; } set { this._iamRoleArn = value; } } // Check to see if IamRoleArn property is set internal bool IsSetIamRoleArn() { return this._iamRoleArn != null; } /// /// Gets and sets the property KmsKeyId. /// /// The ID of the Amazon Web Services KMS key to use to encrypt the data exported to Amazon /// S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, /// or alias name for the KMS key. The caller of this operation must be authorized to /// run the following operations. These can be set in the Amazon Web Services KMS key /// policy: /// ///
  • /// /// kms:Encrypt /// ///
  • /// /// kms:Decrypt /// ///
  • /// /// kms:GenerateDataKey /// ///
  • /// /// kms:GenerateDataKeyWithoutPlaintext /// ///
  • /// /// kms:ReEncryptFrom /// ///
  • /// /// kms:ReEncryptTo /// ///
  • /// /// kms:CreateGrant /// ///
  • /// /// kms:DescribeKey /// ///
  • /// /// kms:RetireGrant /// ///
///
[AWSProperty(Required=true)] public string KmsKeyId { get { return this._kmsKeyId; } set { this._kmsKeyId = value; } } // Check to see if KmsKeyId property is set internal bool IsSetKmsKeyId() { return this._kmsKeyId != null; } /// /// Gets and sets the property S3BucketName. /// /// The name of the Amazon S3 bucket to export the snapshot or cluster data to. /// /// [AWSProperty(Required=true)] public string S3BucketName { get { return this._s3BucketName; } set { this._s3BucketName = value; } } // Check to see if S3BucketName property is set internal bool IsSetS3BucketName() { return this._s3BucketName != null; } /// /// Gets and sets the property S3Prefix. /// /// The Amazon S3 bucket prefix to use as the file name and path of the exported data. /// /// public string S3Prefix { get { return this._s3Prefix; } set { this._s3Prefix = value; } } // Check to see if S3Prefix property is set internal bool IsSetS3Prefix() { return this._s3Prefix != null; } /// /// Gets and sets the property SourceArn. /// /// The Amazon Resource Name (ARN) of the snapshot or cluster to export to Amazon S3. /// /// [AWSProperty(Required=true)] public string SourceArn { get { return this._sourceArn; } set { this._sourceArn = value; } } // Check to see if SourceArn property is set internal bool IsSetSourceArn() { return this._sourceArn != null; } } }