/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace Backup { namespace Model { /** */ class ListBackupJobsRequest : public BackupRequest { public: AWS_BACKUP_API ListBackupJobsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ListBackupJobs"; } AWS_BACKUP_API Aws::String SerializePayload() const override; AWS_BACKUP_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline ListBackupJobsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline ListBackupJobsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The next item following a partial list of returned items. For example, if a * request is made to return maxResults number of items, * NextToken allows you to return more items in your list starting at * the location pointed to by the next token.

*/ inline ListBackupJobsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of items to be returned.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of items to be returned.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of items to be returned.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of items to be returned.

*/ inline ListBackupJobsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline const Aws::String& GetByResourceArn() const{ return m_byResourceArn; } /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline bool ByResourceArnHasBeenSet() const { return m_byResourceArnHasBeenSet; } /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline void SetByResourceArn(const Aws::String& value) { m_byResourceArnHasBeenSet = true; m_byResourceArn = value; } /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline void SetByResourceArn(Aws::String&& value) { m_byResourceArnHasBeenSet = true; m_byResourceArn = std::move(value); } /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline void SetByResourceArn(const char* value) { m_byResourceArnHasBeenSet = true; m_byResourceArn.assign(value); } /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline ListBackupJobsRequest& WithByResourceArn(const Aws::String& value) { SetByResourceArn(value); return *this;} /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline ListBackupJobsRequest& WithByResourceArn(Aws::String&& value) { SetByResourceArn(std::move(value)); return *this;} /** *

Returns only backup jobs that match the specified resource Amazon Resource * Name (ARN).

*/ inline ListBackupJobsRequest& WithByResourceArn(const char* value) { SetByResourceArn(value); return *this;} /** *

Returns only backup jobs that are in the specified state.

*/ inline const BackupJobState& GetByState() const{ return m_byState; } /** *

Returns only backup jobs that are in the specified state.

*/ inline bool ByStateHasBeenSet() const { return m_byStateHasBeenSet; } /** *

Returns only backup jobs that are in the specified state.

*/ inline void SetByState(const BackupJobState& value) { m_byStateHasBeenSet = true; m_byState = value; } /** *

Returns only backup jobs that are in the specified state.

*/ inline void SetByState(BackupJobState&& value) { m_byStateHasBeenSet = true; m_byState = std::move(value); } /** *

Returns only backup jobs that are in the specified state.

*/ inline ListBackupJobsRequest& WithByState(const BackupJobState& value) { SetByState(value); return *this;} /** *

Returns only backup jobs that are in the specified state.

*/ inline ListBackupJobsRequest& WithByState(BackupJobState&& value) { SetByState(std::move(value)); return *this;} /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline const Aws::String& GetByBackupVaultName() const{ return m_byBackupVaultName; } /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline bool ByBackupVaultNameHasBeenSet() const { return m_byBackupVaultNameHasBeenSet; } /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline void SetByBackupVaultName(const Aws::String& value) { m_byBackupVaultNameHasBeenSet = true; m_byBackupVaultName = value; } /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline void SetByBackupVaultName(Aws::String&& value) { m_byBackupVaultNameHasBeenSet = true; m_byBackupVaultName = std::move(value); } /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline void SetByBackupVaultName(const char* value) { m_byBackupVaultNameHasBeenSet = true; m_byBackupVaultName.assign(value); } /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline ListBackupJobsRequest& WithByBackupVaultName(const Aws::String& value) { SetByBackupVaultName(value); return *this;} /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline ListBackupJobsRequest& WithByBackupVaultName(Aws::String&& value) { SetByBackupVaultName(std::move(value)); return *this;} /** *

Returns only backup jobs that will be stored in the specified backup vault. * Backup vaults are identified by names that are unique to the account used to * create them and the Amazon Web Services Region where they are created. They * consist of lowercase letters, numbers, and hyphens.

*/ inline ListBackupJobsRequest& WithByBackupVaultName(const char* value) { SetByBackupVaultName(value); return *this;} /** *

Returns only backup jobs that were created before the specified date.

*/ inline const Aws::Utils::DateTime& GetByCreatedBefore() const{ return m_byCreatedBefore; } /** *

Returns only backup jobs that were created before the specified date.

*/ inline bool ByCreatedBeforeHasBeenSet() const { return m_byCreatedBeforeHasBeenSet; } /** *

Returns only backup jobs that were created before the specified date.

*/ inline void SetByCreatedBefore(const Aws::Utils::DateTime& value) { m_byCreatedBeforeHasBeenSet = true; m_byCreatedBefore = value; } /** *

Returns only backup jobs that were created before the specified date.

*/ inline void SetByCreatedBefore(Aws::Utils::DateTime&& value) { m_byCreatedBeforeHasBeenSet = true; m_byCreatedBefore = std::move(value); } /** *

Returns only backup jobs that were created before the specified date.

*/ inline ListBackupJobsRequest& WithByCreatedBefore(const Aws::Utils::DateTime& value) { SetByCreatedBefore(value); return *this;} /** *

Returns only backup jobs that were created before the specified date.

*/ inline ListBackupJobsRequest& WithByCreatedBefore(Aws::Utils::DateTime&& value) { SetByCreatedBefore(std::move(value)); return *this;} /** *

Returns only backup jobs that were created after the specified date.

*/ inline const Aws::Utils::DateTime& GetByCreatedAfter() const{ return m_byCreatedAfter; } /** *

Returns only backup jobs that were created after the specified date.

*/ inline bool ByCreatedAfterHasBeenSet() const { return m_byCreatedAfterHasBeenSet; } /** *

Returns only backup jobs that were created after the specified date.

*/ inline void SetByCreatedAfter(const Aws::Utils::DateTime& value) { m_byCreatedAfterHasBeenSet = true; m_byCreatedAfter = value; } /** *

Returns only backup jobs that were created after the specified date.

*/ inline void SetByCreatedAfter(Aws::Utils::DateTime&& value) { m_byCreatedAfterHasBeenSet = true; m_byCreatedAfter = std::move(value); } /** *

Returns only backup jobs that were created after the specified date.

*/ inline ListBackupJobsRequest& WithByCreatedAfter(const Aws::Utils::DateTime& value) { SetByCreatedAfter(value); return *this;} /** *

Returns only backup jobs that were created after the specified date.

*/ inline ListBackupJobsRequest& WithByCreatedAfter(Aws::Utils::DateTime&& value) { SetByCreatedAfter(std::move(value)); return *this;} /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline const Aws::String& GetByResourceType() const{ return m_byResourceType; } /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline bool ByResourceTypeHasBeenSet() const { return m_byResourceTypeHasBeenSet; } /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline void SetByResourceType(const Aws::String& value) { m_byResourceTypeHasBeenSet = true; m_byResourceType = value; } /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline void SetByResourceType(Aws::String&& value) { m_byResourceTypeHasBeenSet = true; m_byResourceType = std::move(value); } /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline void SetByResourceType(const char* value) { m_byResourceTypeHasBeenSet = true; m_byResourceType.assign(value); } /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline ListBackupJobsRequest& WithByResourceType(const Aws::String& value) { SetByResourceType(value); return *this;} /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline ListBackupJobsRequest& WithByResourceType(Aws::String&& value) { SetByResourceType(std::move(value)); return *this;} /** *

Returns only backup jobs for the specified resources:

  • * Aurora for Amazon Aurora

  • DocumentDB * for Amazon DocumentDB (with MongoDB compatibility)

  • * DynamoDB for Amazon DynamoDB

  • EBS * for Amazon Elastic Block Store

  • EC2 for Amazon * Elastic Compute Cloud

  • EFS for Amazon Elastic * File System

  • FSx for Amazon FSx

  • *

    Neptune for Amazon Neptune

  • RDS * for Amazon Relational Database Service

  • Storage * Gateway for Storage Gateway

  • S3 for Amazon * S3

  • VirtualMachine for virtual machines

  • *
*/ inline ListBackupJobsRequest& WithByResourceType(const char* value) { SetByResourceType(value); return *this;} /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline const Aws::String& GetByAccountId() const{ return m_byAccountId; } /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline bool ByAccountIdHasBeenSet() const { return m_byAccountIdHasBeenSet; } /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline void SetByAccountId(const Aws::String& value) { m_byAccountIdHasBeenSet = true; m_byAccountId = value; } /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline void SetByAccountId(Aws::String&& value) { m_byAccountIdHasBeenSet = true; m_byAccountId = std::move(value); } /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline void SetByAccountId(const char* value) { m_byAccountIdHasBeenSet = true; m_byAccountId.assign(value); } /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline ListBackupJobsRequest& WithByAccountId(const Aws::String& value) { SetByAccountId(value); return *this;} /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline ListBackupJobsRequest& WithByAccountId(Aws::String&& value) { SetByAccountId(std::move(value)); return *this;} /** *

The account ID to list the jobs from. Returns only backup jobs associated * with the specified account ID.

If used from an Organizations management * account, passing * returns all jobs across the organization.

*/ inline ListBackupJobsRequest& WithByAccountId(const char* value) { SetByAccountId(value); return *this;} /** *

Returns only backup jobs completed after a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline const Aws::Utils::DateTime& GetByCompleteAfter() const{ return m_byCompleteAfter; } /** *

Returns only backup jobs completed after a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline bool ByCompleteAfterHasBeenSet() const { return m_byCompleteAfterHasBeenSet; } /** *

Returns only backup jobs completed after a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline void SetByCompleteAfter(const Aws::Utils::DateTime& value) { m_byCompleteAfterHasBeenSet = true; m_byCompleteAfter = value; } /** *

Returns only backup jobs completed after a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline void SetByCompleteAfter(Aws::Utils::DateTime&& value) { m_byCompleteAfterHasBeenSet = true; m_byCompleteAfter = std::move(value); } /** *

Returns only backup jobs completed after a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline ListBackupJobsRequest& WithByCompleteAfter(const Aws::Utils::DateTime& value) { SetByCompleteAfter(value); return *this;} /** *

Returns only backup jobs completed after a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline ListBackupJobsRequest& WithByCompleteAfter(Aws::Utils::DateTime&& value) { SetByCompleteAfter(std::move(value)); return *this;} /** *

Returns only backup jobs completed before a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline const Aws::Utils::DateTime& GetByCompleteBefore() const{ return m_byCompleteBefore; } /** *

Returns only backup jobs completed before a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline bool ByCompleteBeforeHasBeenSet() const { return m_byCompleteBeforeHasBeenSet; } /** *

Returns only backup jobs completed before a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline void SetByCompleteBefore(const Aws::Utils::DateTime& value) { m_byCompleteBeforeHasBeenSet = true; m_byCompleteBefore = value; } /** *

Returns only backup jobs completed before a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline void SetByCompleteBefore(Aws::Utils::DateTime&& value) { m_byCompleteBeforeHasBeenSet = true; m_byCompleteBefore = std::move(value); } /** *

Returns only backup jobs completed before a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline ListBackupJobsRequest& WithByCompleteBefore(const Aws::Utils::DateTime& value) { SetByCompleteBefore(value); return *this;} /** *

Returns only backup jobs completed before a date expressed in Unix format and * Coordinated Universal Time (UTC).

*/ inline ListBackupJobsRequest& WithByCompleteBefore(Aws::Utils::DateTime&& value) { SetByCompleteBefore(std::move(value)); return *this;} /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline const Aws::String& GetByParentJobId() const{ return m_byParentJobId; } /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline bool ByParentJobIdHasBeenSet() const { return m_byParentJobIdHasBeenSet; } /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline void SetByParentJobId(const Aws::String& value) { m_byParentJobIdHasBeenSet = true; m_byParentJobId = value; } /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline void SetByParentJobId(Aws::String&& value) { m_byParentJobIdHasBeenSet = true; m_byParentJobId = std::move(value); } /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline void SetByParentJobId(const char* value) { m_byParentJobIdHasBeenSet = true; m_byParentJobId.assign(value); } /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline ListBackupJobsRequest& WithByParentJobId(const Aws::String& value) { SetByParentJobId(value); return *this;} /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline ListBackupJobsRequest& WithByParentJobId(Aws::String&& value) { SetByParentJobId(std::move(value)); return *this;} /** *

This is a filter to list child (nested) jobs based on parent job ID.

*/ inline ListBackupJobsRequest& WithByParentJobId(const char* value) { SetByParentJobId(value); return *this;} private: Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_byResourceArn; bool m_byResourceArnHasBeenSet = false; BackupJobState m_byState; bool m_byStateHasBeenSet = false; Aws::String m_byBackupVaultName; bool m_byBackupVaultNameHasBeenSet = false; Aws::Utils::DateTime m_byCreatedBefore; bool m_byCreatedBeforeHasBeenSet = false; Aws::Utils::DateTime m_byCreatedAfter; bool m_byCreatedAfterHasBeenSet = false; Aws::String m_byResourceType; bool m_byResourceTypeHasBeenSet = false; Aws::String m_byAccountId; bool m_byAccountIdHasBeenSet = false; Aws::Utils::DateTime m_byCompleteAfter; bool m_byCompleteAfterHasBeenSet = false; Aws::Utils::DateTime m_byCompleteBefore; bool m_byCompleteBeforeHasBeenSet = false; Aws::String m_byParentJobId; bool m_byParentJobIdHasBeenSet = false; }; } // namespace Model } // namespace Backup } // namespace Aws