#[non_exhaustive]pub struct StartExportTaskInput { /* private fields */ }Implementations§
source§impl StartExportTaskInput
impl StartExportTaskInput
sourcepub fn export_task_identifier(&self) -> Option<&str>
pub fn export_task_identifier(&self) -> Option<&str>
A unique identifier for the snapshot export task. This ID isn't an identifier for the Amazon S3 bucket where the snapshot is to be exported to.
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the snapshot to export to Amazon S3.
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
The name of the Amazon S3 bucket to export the snapshot to.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
The name of the IAM role to use for writing to the Amazon S3 bucket when exporting a snapshot.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The ID of the Amazon Web Services KMS key to use to encrypt the snapshot 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
sourcepub fn s3_prefix(&self) -> Option<&str>
pub fn s3_prefix(&self) -> Option<&str>
The Amazon S3 bucket prefix to use as the file name and path of the exported snapshot.
sourcepub fn export_only(&self) -> Option<&[String]>
pub fn export_only(&self) -> Option<&[String]>
The data to be exported from the snapshot. If this parameter is not provided, all the snapshot data is exported. Valid values are the following:
-
database- Export all the data from a specified database. -
database.tabletable-name - Export a table of the snapshot. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL. -
database.schemaschema-name - Export a database schema of the snapshot. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL. -
database.schema.tabletable-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
source§impl StartExportTaskInput
impl StartExportTaskInput
sourcepub fn builder() -> StartExportTaskInputBuilder
pub fn builder() -> StartExportTaskInputBuilder
Creates a new builder-style object to manufacture StartExportTaskInput.
source§impl StartExportTaskInput
impl StartExportTaskInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartExportTask, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<StartExportTask, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartExportTask>
Trait Implementations§
source§impl Clone for StartExportTaskInput
impl Clone for StartExportTaskInput
source§fn clone(&self) -> StartExportTaskInput
fn clone(&self) -> StartExportTaskInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartExportTaskInput
impl Debug for StartExportTaskInput
source§impl PartialEq<StartExportTaskInput> for StartExportTaskInput
impl PartialEq<StartExportTaskInput> for StartExportTaskInput
source§fn eq(&self, other: &StartExportTaskInput) -> bool
fn eq(&self, other: &StartExportTaskInput) -> bool
self and other values to be equal, and is used
by ==.