/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace ECR { namespace Model { /** */ class GetLifecyclePolicyPreviewRequest : public ECRRequest { public: AWS_ECR_API GetLifecyclePolicyPreviewRequest(); // 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 "GetLifecyclePolicyPreview"; } AWS_ECR_API Aws::String SerializePayload() const override; AWS_ECR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline const Aws::String& GetRegistryId() const{ return m_registryId; } /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline bool RegistryIdHasBeenSet() const { return m_registryIdHasBeenSet; } /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline void SetRegistryId(const Aws::String& value) { m_registryIdHasBeenSet = true; m_registryId = value; } /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline void SetRegistryId(Aws::String&& value) { m_registryIdHasBeenSet = true; m_registryId = std::move(value); } /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline void SetRegistryId(const char* value) { m_registryIdHasBeenSet = true; m_registryId.assign(value); } /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline GetLifecyclePolicyPreviewRequest& WithRegistryId(const Aws::String& value) { SetRegistryId(value); return *this;} /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline GetLifecyclePolicyPreviewRequest& WithRegistryId(Aws::String&& value) { SetRegistryId(std::move(value)); return *this;} /** *

The Amazon Web Services account ID associated with the registry that contains * the repository. If you do not specify a registry, the default registry is * assumed.

*/ inline GetLifecyclePolicyPreviewRequest& WithRegistryId(const char* value) { SetRegistryId(value); return *this;} /** *

The name of the repository.

*/ inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; } /** *

The name of the repository.

*/ inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; } /** *

The name of the repository.

*/ inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; } /** *

The name of the repository.

*/ inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); } /** *

The name of the repository.

*/ inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); } /** *

The name of the repository.

*/ inline GetLifecyclePolicyPreviewRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;} /** *

The name of the repository.

*/ inline GetLifecyclePolicyPreviewRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;} /** *

The name of the repository.

*/ inline GetLifecyclePolicyPreviewRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;} /** *

The list of imageIDs to be included.

*/ inline const Aws::Vector& GetImageIds() const{ return m_imageIds; } /** *

The list of imageIDs to be included.

*/ inline bool ImageIdsHasBeenSet() const { return m_imageIdsHasBeenSet; } /** *

The list of imageIDs to be included.

*/ inline void SetImageIds(const Aws::Vector& value) { m_imageIdsHasBeenSet = true; m_imageIds = value; } /** *

The list of imageIDs to be included.

*/ inline void SetImageIds(Aws::Vector&& value) { m_imageIdsHasBeenSet = true; m_imageIds = std::move(value); } /** *

The list of imageIDs to be included.

*/ inline GetLifecyclePolicyPreviewRequest& WithImageIds(const Aws::Vector& value) { SetImageIds(value); return *this;} /** *

The list of imageIDs to be included.

*/ inline GetLifecyclePolicyPreviewRequest& WithImageIds(Aws::Vector&& value) { SetImageIds(std::move(value)); return *this;} /** *

The list of imageIDs to be included.

*/ inline GetLifecyclePolicyPreviewRequest& AddImageIds(const ImageIdentifier& value) { m_imageIdsHasBeenSet = true; m_imageIds.push_back(value); return *this; } /** *

The list of imageIDs to be included.

*/ inline GetLifecyclePolicyPreviewRequest& AddImageIds(ImageIdentifier&& value) { m_imageIdsHasBeenSet = true; m_imageIds.push_back(std::move(value)); return *this; } /** *

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The nextToken value returned from a previous paginated
 * GetLifecyclePolicyPreviewRequest request where * maxResults was used and the
 results exceeded the value of * that parameter. Pagination continues from the end of the
 previous * results that returned the nextToken value. This value is
 * null when there are no more results to return. This option cannot * be used when you specify images with imageIds.

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

The maximum number of repository results returned by * GetLifecyclePolicyPreviewRequest in
 paginated output. When * this parameter is used, GetLifecyclePolicyPreviewRequest only * returns
 maxResults results in a single page along with a * nextToken
 response element. The remaining results of the * initial request can be seen by sending
 another * GetLifecyclePolicyPreviewRequest request with the returned * nextToken
 value. This value can be between 1 and 1000. If * this
 parameter is not used, then * GetLifecyclePolicyPreviewRequest returns up to
 100 results * and a nextToken value, if
 applicable. This option cannot be * used when you specify images with imageIds.

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

The maximum number of repository results returned by * GetLifecyclePolicyPreviewRequest in
 paginated output. When * this parameter is used, GetLifecyclePolicyPreviewRequest only * returns
 maxResults results in a single page along with a * nextToken
 response element. The remaining results of the * initial request can be seen by sending
 another * GetLifecyclePolicyPreviewRequest request with the returned * nextToken
 value. This value can be between 1 and 1000. If * this
 parameter is not used, then * GetLifecyclePolicyPreviewRequest returns up to
 100 results * and a nextToken value, if
 applicable. This option cannot be * used when you specify images with imageIds.

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

The maximum number of repository results returned by * GetLifecyclePolicyPreviewRequest in
 paginated output. When * this parameter is used, GetLifecyclePolicyPreviewRequest only * returns
 maxResults results in a single page along with a * nextToken
 response element. The remaining results of the * initial request can be seen by sending
 another * GetLifecyclePolicyPreviewRequest request with the returned * nextToken
 value. This value can be between 1 and 1000. If * this
 parameter is not used, then * GetLifecyclePolicyPreviewRequest returns up to
 100 results * and a nextToken value, if
 applicable. This option cannot be * used when you specify images with imageIds.

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

The maximum number of repository results returned by * GetLifecyclePolicyPreviewRequest in
 paginated output. When * this parameter is used, GetLifecyclePolicyPreviewRequest only * returns
 maxResults results in a single page along with a * nextToken
 response element. The remaining results of the * initial request can be seen by sending
 another * GetLifecyclePolicyPreviewRequest request with the returned * nextToken
 value. This value can be between 1 and 1000. If * this
 parameter is not used, then * GetLifecyclePolicyPreviewRequest returns up to
 100 results * and a nextToken value, if
 applicable. This option cannot be * used when you specify images with imageIds.

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

An optional parameter that filters results based on image tag status and all * tags, if tagged.

*/ inline const LifecyclePolicyPreviewFilter& GetFilter() const{ return m_filter; } /** *

An optional parameter that filters results based on image tag status and all * tags, if tagged.

*/ inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; } /** *

An optional parameter that filters results based on image tag status and all * tags, if tagged.

*/ inline void SetFilter(const LifecyclePolicyPreviewFilter& value) { m_filterHasBeenSet = true; m_filter = value; } /** *

An optional parameter that filters results based on image tag status and all * tags, if tagged.

*/ inline void SetFilter(LifecyclePolicyPreviewFilter&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); } /** *

An optional parameter that filters results based on image tag status and all * tags, if tagged.

*/ inline GetLifecyclePolicyPreviewRequest& WithFilter(const LifecyclePolicyPreviewFilter& value) { SetFilter(value); return *this;} /** *

An optional parameter that filters results based on image tag status and all * tags, if tagged.

*/ inline GetLifecyclePolicyPreviewRequest& WithFilter(LifecyclePolicyPreviewFilter&& value) { SetFilter(std::move(value)); return *this;} private: Aws::String m_registryId; bool m_registryIdHasBeenSet = false; Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::Vector m_imageIds; bool m_imageIdsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; LifecyclePolicyPreviewFilter m_filter; bool m_filterHasBeenSet = false; }; } // namespace Model } // namespace ECR } // namespace Aws