[][src]Struct rusoto_cognito_idp::UserImportJobType

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

cloud_watch_logs_role_arn: Option<String>

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.

completion_date: Option<f64>

The date when the user import job was completed.

completion_message: Option<String>

The message returned when the user import job is completed.

creation_date: Option<f64>

The date the user import job was created.

failed_users: Option<i64>

The number of users that could not be imported.

imported_users: Option<i64>

The number of users that were successfully imported.

job_id: Option<String>

The job ID for the user import job.

job_name: Option<String>

The job name for the user import job.

pre_signed_url: Option<String>

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

skipped_users: Option<i64>

The number of users that were skipped.

start_date: Option<f64>

The date when the user import job was started.

status: Option<String>

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

user_pool_id: Option<String>

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

Trait Implementations

impl PartialEq<UserImportJobType> for UserImportJobType[src]

impl Default for UserImportJobType[src]

impl Clone for UserImportJobType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UserImportJobType[src]

impl<'de> Deserialize<'de> for UserImportJobType[src]

Auto Trait Implementations

impl Send for UserImportJobType

impl Sync for UserImportJobType

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self