/** * 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 imagebuilder { namespace Model { /** */ class ListContainerRecipesRequest : public ImagebuilderRequest { public: AWS_IMAGEBUILDER_API ListContainerRecipesRequest(); // 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 "ListContainerRecipes"; } AWS_IMAGEBUILDER_API Aws::String SerializePayload() const override; /** *

Returns container recipes belonging to the specified owner, that have been * shared with you. You can omit this field to return container recipes belonging * to your account.

*/ inline const Ownership& GetOwner() const{ return m_owner; } /** *

Returns container recipes belonging to the specified owner, that have been * shared with you. You can omit this field to return container recipes belonging * to your account.

*/ inline bool OwnerHasBeenSet() const { return m_ownerHasBeenSet; } /** *

Returns container recipes belonging to the specified owner, that have been * shared with you. You can omit this field to return container recipes belonging * to your account.

*/ inline void SetOwner(const Ownership& value) { m_ownerHasBeenSet = true; m_owner = value; } /** *

Returns container recipes belonging to the specified owner, that have been * shared with you. You can omit this field to return container recipes belonging * to your account.

*/ inline void SetOwner(Ownership&& value) { m_ownerHasBeenSet = true; m_owner = std::move(value); } /** *

Returns container recipes belonging to the specified owner, that have been * shared with you. You can omit this field to return container recipes belonging * to your account.

*/ inline ListContainerRecipesRequest& WithOwner(const Ownership& value) { SetOwner(value); return *this;} /** *

Returns container recipes belonging to the specified owner, that have been * shared with you. You can omit this field to return container recipes belonging * to your account.

*/ inline ListContainerRecipesRequest& WithOwner(Ownership&& value) { SetOwner(std::move(value)); return *this;} /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline const Aws::Vector& GetFilters() const{ return m_filters; } /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; } /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline void SetFilters(const Aws::Vector& value) { m_filtersHasBeenSet = true; m_filters = value; } /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline void SetFilters(Aws::Vector&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); } /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline ListContainerRecipesRequest& WithFilters(const Aws::Vector& value) { SetFilters(value); return *this;} /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline ListContainerRecipesRequest& WithFilters(Aws::Vector&& value) { SetFilters(std::move(value)); return *this;} /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline ListContainerRecipesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } /** *

Use the following filters to streamline results:

  • * containerType

  • name

  • *

    parentImage

  • platform

    *
*/ inline ListContainerRecipesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; } /** *

The maximum items to return in a request.

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

The maximum items to return in a request.

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

The maximum items to return in a request.

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

The maximum items to return in a request.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

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

A token to specify where to start paginating. This is the NextToken from a * previously truncated response.

*/ inline ListContainerRecipesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Ownership m_owner; bool m_ownerHasBeenSet = false; Aws::Vector m_filters; bool m_filtersHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace imagebuilder } // namespace Aws