[−][src]Struct rusoto_cognito_idp::UserImportJobType
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:
-
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.
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]
fn eq(&self, other: &UserImportJobType) -> bool
[src]
fn ne(&self, other: &UserImportJobType) -> bool
[src]
impl Default for UserImportJobType
[src]
fn default() -> UserImportJobType
[src]
impl Clone for UserImportJobType
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self