amazonka-maciev2-2.0: Amazon Macie 2 SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.MacieV2.DescribeClassificationJob

Description

Retrieves the status and settings for a classification job.

Synopsis

Creating a Request

data DescribeClassificationJob Source #

See: newDescribeClassificationJob smart constructor.

Constructors

DescribeClassificationJob' 

Fields

  • jobId :: Text

    The unique identifier for the classification job.

Instances

Instances details
ToHeaders DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

ToPath DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

ToQuery DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

AWSRequest DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Generic DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Associated Types

type Rep DescribeClassificationJob :: Type -> Type #

Read DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Show DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

NFData DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Eq DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Hashable DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

type AWSResponse DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

type Rep DescribeClassificationJob Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

type Rep DescribeClassificationJob = D1 ('MetaData "DescribeClassificationJob" "Amazonka.MacieV2.DescribeClassificationJob" "amazonka-maciev2-2.0-5WBPWSHaxt7LOrO1LzXg18" 'False) (C1 ('MetaCons "DescribeClassificationJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeClassificationJob Source #

Create a value of DescribeClassificationJob with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

DescribeClassificationJob, describeClassificationJob_jobId - The unique identifier for the classification job.

Request Lenses

describeClassificationJob_jobId :: Lens' DescribeClassificationJob Text Source #

The unique identifier for the classification job.

Destructuring the Response

data DescribeClassificationJobResponse Source #

See: newDescribeClassificationJobResponse smart constructor.

Constructors

DescribeClassificationJobResponse' 

Fields

  • allowListIds :: Maybe [Text]

    An array of unique identifiers, one for each allow list that the job uses when it analyzes data.

  • clientToken :: Maybe Text

    The token that was provided to ensure the idempotency of the request to create the job.

  • createdAt :: Maybe ISO8601

    The date and time, in UTC and extended ISO 8601 format, when the job was created.

  • customDataIdentifierIds :: Maybe [Text]

    An array of unique identifiers, one for each custom data identifier that the job uses when it analyzes data. This value is null if the job uses only managed data identifiers to analyze data.

  • description :: Maybe Text

    The custom description of the job.

  • initialRun :: Maybe Bool

    For a recurring job, specifies whether you configured the job to analyze all existing, eligible objects immediately after the job was created (true). If you configured the job to analyze only those objects that were created or changed after the job was created and before the job's first scheduled run, this value is false. This value is also false for a one-time job.

  • jobArn :: Maybe Text

    The Amazon Resource Name (ARN) of the job.

  • jobId :: Maybe Text

    The unique identifier for the job.

  • jobStatus :: Maybe JobStatus

    The current status of the job. Possible values are:

    • CANCELLED - You cancelled the job or, if it's a one-time job, you paused the job and didn't resume it within 30 days.
    • COMPLETE - For a one-time job, Amazon Macie finished processing the data specified for the job. This value doesn't apply to recurring jobs.
    • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.
    • PAUSED - Macie started running the job but additional processing would exceed the monthly sensitive data discovery quota for your account or one or more member accounts that the job analyzes data for.
    • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.
    • USER_PAUSED - You paused the job. If you paused the job while it had a status of RUNNING and you don't resume it within 30 days of pausing it, the job or job run will expire and be cancelled, depending on the job's type. To check the expiration date, refer to the UserPausedDetails.jobExpiresAt property.
  • jobType :: Maybe JobType

    The schedule for running the job. Possible values are:

    • ONE_TIME - The job runs only once.
    • SCHEDULED - The job runs on a daily, weekly, or monthly basis. The scheduleFrequency property indicates the recurrence pattern for the job.
  • lastRunErrorStatus :: Maybe LastRunErrorStatus

    Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run.

  • lastRunTime :: Maybe ISO8601

    The date and time, in UTC and extended ISO 8601 format, when the job started. If the job is a recurring job, this value indicates when the most recent run started or, if the job hasn't run yet, when the job was created.

  • managedDataIdentifierIds :: Maybe [Text]

    An array of unique identifiers, one for each managed data identifier that the job is explicitly configured to include (use) or exclude (not use) when it analyzes data. Inclusion or exclusion depends on the managed data identifier selection type specified for the job (managedDataIdentifierSelector). This value is null if the job's managed data identifier selection type is ALL or the job uses only custom data identifiers (customDataIdentifierIds) to analyze data.

  • managedDataIdentifierSelector :: Maybe ManagedDataIdentifierSelector

    The selection type that determines which managed data identifiers the job uses to analyze data. Possible values are:

    • ALL - Use all the managed data identifiers that Amazon Macie provides.
    • EXCLUDE - Use all the managed data identifiers that Macie provides except the managed data identifiers specified by the managedDataIdentifierIds property.
    • INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.
    • NONE - Don't use any managed data identifiers.

    If this value is null, the job uses all managed data identifiers. If this value is null, ALL, or EXCLUDE for a recurring job, the job also uses new managed data identifiers as they are released.

  • name :: Maybe Text

    The custom name of the job.

  • s3JobDefinition :: Maybe S3JobDefinition

    The S3 buckets that contain the objects to analyze, and the scope of that analysis.

  • samplingPercentage :: Maybe Int

    The sampling depth, as a percentage, that determines the percentage of eligible objects that the job analyzes.

  • scheduleFrequency :: Maybe JobScheduleFrequency

    The recurrence pattern for running the job. This value is null if the job is configured to run only once.

  • statistics :: Maybe Statistics

    The number of times that the job has run and processing statistics for the job's current run.

  • tags :: Maybe (HashMap Text Text)

    A map of key-value pairs that specifies which tags (keys and values) are associated with the classification job.

  • userPausedDetails :: Maybe UserPausedDetails

    If the current status of the job is USER_PAUSED, specifies when the job was paused and when the job or job run will expire and be cancelled if it isn't resumed. This value is present only if the value for jobStatus is USER_PAUSED.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic DescribeClassificationJobResponse Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Associated Types

type Rep DescribeClassificationJobResponse :: Type -> Type #

Read DescribeClassificationJobResponse Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Show DescribeClassificationJobResponse Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

NFData DescribeClassificationJobResponse Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

Eq DescribeClassificationJobResponse Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

type Rep DescribeClassificationJobResponse Source # 
Instance details

Defined in Amazonka.MacieV2.DescribeClassificationJob

type Rep DescribeClassificationJobResponse = D1 ('MetaData "DescribeClassificationJobResponse" "Amazonka.MacieV2.DescribeClassificationJob" "amazonka-maciev2-2.0-5WBPWSHaxt7LOrO1LzXg18" 'False) (C1 ('MetaCons "DescribeClassificationJobResponse'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "allowListIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: (S1 ('MetaSel ('Just "customDataIdentifierIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "initialRun") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "jobArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "jobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JobStatus)) :*: (S1 ('MetaSel ('Just "jobType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JobType)) :*: S1 ('MetaSel ('Just "lastRunErrorStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LastRunErrorStatus)))))) :*: (((S1 ('MetaSel ('Just "lastRunTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "managedDataIdentifierIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "managedDataIdentifierSelector") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ManagedDataIdentifierSelector)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "s3JobDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3JobDefinition))))) :*: ((S1 ('MetaSel ('Just "samplingPercentage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "scheduleFrequency") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JobScheduleFrequency)) :*: S1 ('MetaSel ('Just "statistics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Statistics)))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "userPausedDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UserPausedDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))))

newDescribeClassificationJobResponse Source #

Create a value of DescribeClassificationJobResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

DescribeClassificationJobResponse, describeClassificationJobResponse_allowListIds - An array of unique identifiers, one for each allow list that the job uses when it analyzes data.

$sel:clientToken:DescribeClassificationJobResponse', describeClassificationJobResponse_clientToken - The token that was provided to ensure the idempotency of the request to create the job.

DescribeClassificationJobResponse, describeClassificationJobResponse_createdAt - The date and time, in UTC and extended ISO 8601 format, when the job was created.

DescribeClassificationJobResponse, describeClassificationJobResponse_customDataIdentifierIds - An array of unique identifiers, one for each custom data identifier that the job uses when it analyzes data. This value is null if the job uses only managed data identifiers to analyze data.

DescribeClassificationJobResponse, describeClassificationJobResponse_description - The custom description of the job.

$sel:initialRun:DescribeClassificationJobResponse', describeClassificationJobResponse_initialRun - For a recurring job, specifies whether you configured the job to analyze all existing, eligible objects immediately after the job was created (true). If you configured the job to analyze only those objects that were created or changed after the job was created and before the job's first scheduled run, this value is false. This value is also false for a one-time job.

DescribeClassificationJobResponse, describeClassificationJobResponse_jobArn - The Amazon Resource Name (ARN) of the job.

DescribeClassificationJob, describeClassificationJobResponse_jobId - The unique identifier for the job.

DescribeClassificationJobResponse, describeClassificationJobResponse_jobStatus - The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job or, if it's a one-time job, you paused the job and didn't resume it within 30 days.
  • COMPLETE - For a one-time job, Amazon Macie finished processing the data specified for the job. This value doesn't apply to recurring jobs.
  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.
  • PAUSED - Macie started running the job but additional processing would exceed the monthly sensitive data discovery quota for your account or one or more member accounts that the job analyzes data for.
  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.
  • USER_PAUSED - You paused the job. If you paused the job while it had a status of RUNNING and you don't resume it within 30 days of pausing it, the job or job run will expire and be cancelled, depending on the job's type. To check the expiration date, refer to the UserPausedDetails.jobExpiresAt property.

DescribeClassificationJobResponse, describeClassificationJobResponse_jobType - The schedule for running the job. Possible values are:

  • ONE_TIME - The job runs only once.
  • SCHEDULED - The job runs on a daily, weekly, or monthly basis. The scheduleFrequency property indicates the recurrence pattern for the job.

DescribeClassificationJobResponse, describeClassificationJobResponse_lastRunErrorStatus - Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run.

$sel:lastRunTime:DescribeClassificationJobResponse', describeClassificationJobResponse_lastRunTime - The date and time, in UTC and extended ISO 8601 format, when the job started. If the job is a recurring job, this value indicates when the most recent run started or, if the job hasn't run yet, when the job was created.

DescribeClassificationJobResponse, describeClassificationJobResponse_managedDataIdentifierIds - An array of unique identifiers, one for each managed data identifier that the job is explicitly configured to include (use) or exclude (not use) when it analyzes data. Inclusion or exclusion depends on the managed data identifier selection type specified for the job (managedDataIdentifierSelector). This value is null if the job's managed data identifier selection type is ALL or the job uses only custom data identifiers (customDataIdentifierIds) to analyze data.

$sel:managedDataIdentifierSelector:DescribeClassificationJobResponse', describeClassificationJobResponse_managedDataIdentifierSelector - The selection type that determines which managed data identifiers the job uses to analyze data. Possible values are:

  • ALL - Use all the managed data identifiers that Amazon Macie provides.
  • EXCLUDE - Use all the managed data identifiers that Macie provides except the managed data identifiers specified by the managedDataIdentifierIds property.
  • INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.
  • NONE - Don't use any managed data identifiers.

If this value is null, the job uses all managed data identifiers. If this value is null, ALL, or EXCLUDE for a recurring job, the job also uses new managed data identifiers as they are released.

DescribeClassificationJobResponse, describeClassificationJobResponse_name - The custom name of the job.

$sel:s3JobDefinition:DescribeClassificationJobResponse', describeClassificationJobResponse_s3JobDefinition - The S3 buckets that contain the objects to analyze, and the scope of that analysis.

$sel:samplingPercentage:DescribeClassificationJobResponse', describeClassificationJobResponse_samplingPercentage - The sampling depth, as a percentage, that determines the percentage of eligible objects that the job analyzes.

$sel:scheduleFrequency:DescribeClassificationJobResponse', describeClassificationJobResponse_scheduleFrequency - The recurrence pattern for running the job. This value is null if the job is configured to run only once.

$sel:statistics:DescribeClassificationJobResponse', describeClassificationJobResponse_statistics - The number of times that the job has run and processing statistics for the job's current run.

DescribeClassificationJobResponse, describeClassificationJobResponse_tags - A map of key-value pairs that specifies which tags (keys and values) are associated with the classification job.

DescribeClassificationJobResponse, describeClassificationJobResponse_userPausedDetails - If the current status of the job is USER_PAUSED, specifies when the job was paused and when the job or job run will expire and be cancelled if it isn't resumed. This value is present only if the value for jobStatus is USER_PAUSED.

$sel:httpStatus:DescribeClassificationJobResponse', describeClassificationJobResponse_httpStatus - The response's http status code.

Response Lenses

describeClassificationJobResponse_allowListIds :: Lens' DescribeClassificationJobResponse (Maybe [Text]) Source #

An array of unique identifiers, one for each allow list that the job uses when it analyzes data.

describeClassificationJobResponse_clientToken :: Lens' DescribeClassificationJobResponse (Maybe Text) Source #

The token that was provided to ensure the idempotency of the request to create the job.

describeClassificationJobResponse_createdAt :: Lens' DescribeClassificationJobResponse (Maybe UTCTime) Source #

The date and time, in UTC and extended ISO 8601 format, when the job was created.

describeClassificationJobResponse_customDataIdentifierIds :: Lens' DescribeClassificationJobResponse (Maybe [Text]) Source #

An array of unique identifiers, one for each custom data identifier that the job uses when it analyzes data. This value is null if the job uses only managed data identifiers to analyze data.

describeClassificationJobResponse_initialRun :: Lens' DescribeClassificationJobResponse (Maybe Bool) Source #

For a recurring job, specifies whether you configured the job to analyze all existing, eligible objects immediately after the job was created (true). If you configured the job to analyze only those objects that were created or changed after the job was created and before the job's first scheduled run, this value is false. This value is also false for a one-time job.

describeClassificationJobResponse_jobStatus :: Lens' DescribeClassificationJobResponse (Maybe JobStatus) Source #

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job or, if it's a one-time job, you paused the job and didn't resume it within 30 days.
  • COMPLETE - For a one-time job, Amazon Macie finished processing the data specified for the job. This value doesn't apply to recurring jobs.
  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.
  • PAUSED - Macie started running the job but additional processing would exceed the monthly sensitive data discovery quota for your account or one or more member accounts that the job analyzes data for.
  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.
  • USER_PAUSED - You paused the job. If you paused the job while it had a status of RUNNING and you don't resume it within 30 days of pausing it, the job or job run will expire and be cancelled, depending on the job's type. To check the expiration date, refer to the UserPausedDetails.jobExpiresAt property.

describeClassificationJobResponse_jobType :: Lens' DescribeClassificationJobResponse (Maybe JobType) Source #

The schedule for running the job. Possible values are:

  • ONE_TIME - The job runs only once.
  • SCHEDULED - The job runs on a daily, weekly, or monthly basis. The scheduleFrequency property indicates the recurrence pattern for the job.

describeClassificationJobResponse_lastRunErrorStatus :: Lens' DescribeClassificationJobResponse (Maybe LastRunErrorStatus) Source #

Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run.

describeClassificationJobResponse_lastRunTime :: Lens' DescribeClassificationJobResponse (Maybe UTCTime) Source #

The date and time, in UTC and extended ISO 8601 format, when the job started. If the job is a recurring job, this value indicates when the most recent run started or, if the job hasn't run yet, when the job was created.

describeClassificationJobResponse_managedDataIdentifierIds :: Lens' DescribeClassificationJobResponse (Maybe [Text]) Source #

An array of unique identifiers, one for each managed data identifier that the job is explicitly configured to include (use) or exclude (not use) when it analyzes data. Inclusion or exclusion depends on the managed data identifier selection type specified for the job (managedDataIdentifierSelector). This value is null if the job's managed data identifier selection type is ALL or the job uses only custom data identifiers (customDataIdentifierIds) to analyze data.

describeClassificationJobResponse_managedDataIdentifierSelector :: Lens' DescribeClassificationJobResponse (Maybe ManagedDataIdentifierSelector) Source #

The selection type that determines which managed data identifiers the job uses to analyze data. Possible values are:

  • ALL - Use all the managed data identifiers that Amazon Macie provides.
  • EXCLUDE - Use all the managed data identifiers that Macie provides except the managed data identifiers specified by the managedDataIdentifierIds property.
  • INCLUDE - Use only the managed data identifiers specified by the managedDataIdentifierIds property.
  • NONE - Don't use any managed data identifiers.

If this value is null, the job uses all managed data identifiers. If this value is null, ALL, or EXCLUDE for a recurring job, the job also uses new managed data identifiers as they are released.

describeClassificationJobResponse_s3JobDefinition :: Lens' DescribeClassificationJobResponse (Maybe S3JobDefinition) Source #

The S3 buckets that contain the objects to analyze, and the scope of that analysis.

describeClassificationJobResponse_samplingPercentage :: Lens' DescribeClassificationJobResponse (Maybe Int) Source #

The sampling depth, as a percentage, that determines the percentage of eligible objects that the job analyzes.

describeClassificationJobResponse_scheduleFrequency :: Lens' DescribeClassificationJobResponse (Maybe JobScheduleFrequency) Source #

The recurrence pattern for running the job. This value is null if the job is configured to run only once.

describeClassificationJobResponse_statistics :: Lens' DescribeClassificationJobResponse (Maybe Statistics) Source #

The number of times that the job has run and processing statistics for the job's current run.

describeClassificationJobResponse_tags :: Lens' DescribeClassificationJobResponse (Maybe (HashMap Text Text)) Source #

A map of key-value pairs that specifies which tags (keys and values) are associated with the classification job.

describeClassificationJobResponse_userPausedDetails :: Lens' DescribeClassificationJobResponse (Maybe UserPausedDetails) Source #

If the current status of the job is USER_PAUSED, specifies when the job was paused and when the job or job run will expire and be cancelled if it isn't resumed. This value is present only if the value for jobStatus is USER_PAUSED.