Struct rusoto_cognito_idp::UserImportJobType[][src]

pub struct UserImportJobType {
    pub cloud_watch_logs_role_arn: Option<String>,
    pub completion_date: Option<f64>,
    pub completion_message: Option<String>,
    pub creation_date: Option<f64>,
    pub failed_users: Option<i64>,
    pub imported_users: Option<i64>,
    pub job_id: Option<String>,
    pub job_name: Option<String>,
    pub pre_signed_url: Option<String>,
    pub skipped_users: Option<i64>,
    pub start_date: Option<f64>,
    pub status: Option<String>,
    pub user_pool_id: Option<String>,
}

The user import job type.

Fields

The role ARN for the Amazon CloudWatch Logging role for the user import job. For more information, see "Creating the CloudWatch Logs IAM Role" in the Amazon Cognito Developer Guide.

The date when the user import job was completed.

The message returned when the user import job is completed.

The date the user import job was created.

The number of users that could not be imported.

The number of users that were successfully imported.

The job ID for the user import job.

The job name for the user import job.

The pre-signed URL to be used to upload the .csv file.

The number of users that were skipped.

The date when the user import job was started.

The status of the user import job. One of the following:

  • Created - The job was created but not started.

  • Pending - A transition state. You have started the job, but it has not begun importing users yet.

  • InProgress - The job has started, and users are being imported.

  • Stopping - You have stopped the job, but the job has not stopped importing users yet.

  • Stopped - You have stopped the job, and the job has stopped importing users.

  • Succeeded - The job has completed successfully.

  • Failed - The job has stopped due to an error.

  • Expired - You created a job, but did not start the job within 24-48 hours. All data associated with the job was deleted, and the job cannot be started.

The user pool ID for the user pool that the users are being imported into.

Trait Implementations

impl Default for UserImportJobType
[src]

Returns the "default value" for a type. Read more

impl Debug for UserImportJobType
[src]

Formats the value using the given formatter. Read more

impl Clone for UserImportJobType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UserImportJobType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations