Struct aws_sdk_rds::input::StartExportTaskInput
source · [−]#[non_exhaustive]pub struct StartExportTaskInput { /* private fields */ }Implementations
sourceimpl 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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartExportTaskInput.
sourceimpl 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 execute the following operations. These can be set in the Amazon Web Services KMS key policy:
-
GrantOperation.Encrypt
-
GrantOperation.Decrypt
-
GrantOperation.GenerateDataKey
-
GrantOperation.GenerateDataKeyWithoutPlaintext
-
GrantOperation.ReEncryptFrom
-
GrantOperation.ReEncryptTo
-
GrantOperation.CreateGrant
-
GrantOperation.DescribeKey
-
GrantOperation.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.
Trait Implementations
sourceimpl Clone for StartExportTaskInput
impl Clone for StartExportTaskInput
sourcefn clone(&self) -> StartExportTaskInput
fn clone(&self) -> StartExportTaskInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more