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

The list of UserStackAssociation objects.

*/ inline const Aws::Vector& GetUserStackAssociations() const{ return m_userStackAssociations; } /** *

The list of UserStackAssociation objects.

*/ inline bool UserStackAssociationsHasBeenSet() const { return m_userStackAssociationsHasBeenSet; } /** *

The list of UserStackAssociation objects.

*/ inline void SetUserStackAssociations(const Aws::Vector& value) { m_userStackAssociationsHasBeenSet = true; m_userStackAssociations = value; } /** *

The list of UserStackAssociation objects.

*/ inline void SetUserStackAssociations(Aws::Vector&& value) { m_userStackAssociationsHasBeenSet = true; m_userStackAssociations = std::move(value); } /** *

The list of UserStackAssociation objects.

*/ inline BatchAssociateUserStackRequest& WithUserStackAssociations(const Aws::Vector& value) { SetUserStackAssociations(value); return *this;} /** *

The list of UserStackAssociation objects.

*/ inline BatchAssociateUserStackRequest& WithUserStackAssociations(Aws::Vector&& value) { SetUserStackAssociations(std::move(value)); return *this;} /** *

The list of UserStackAssociation objects.

*/ inline BatchAssociateUserStackRequest& AddUserStackAssociations(const UserStackAssociation& value) { m_userStackAssociationsHasBeenSet = true; m_userStackAssociations.push_back(value); return *this; } /** *

The list of UserStackAssociation objects.

*/ inline BatchAssociateUserStackRequest& AddUserStackAssociations(UserStackAssociation&& value) { m_userStackAssociationsHasBeenSet = true; m_userStackAssociations.push_back(std::move(value)); return *this; } private: Aws::Vector m_userStackAssociations; bool m_userStackAssociationsHasBeenSet = false; }; } // namespace Model } // namespace AppStream } // namespace Aws