/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The request body for CreateJob.See Also:
AWS
* API Reference
The details for the CreateJob request.
*/ inline const RequestDetails& GetDetails() const{ return m_details; } /** *The details for the CreateJob request.
*/ inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; } /** *The details for the CreateJob request.
*/ inline void SetDetails(const RequestDetails& value) { m_detailsHasBeenSet = true; m_details = value; } /** *The details for the CreateJob request.
*/ inline void SetDetails(RequestDetails&& value) { m_detailsHasBeenSet = true; m_details = std::move(value); } /** *The details for the CreateJob request.
*/ inline CreateJobRequest& WithDetails(const RequestDetails& value) { SetDetails(value); return *this;} /** *The details for the CreateJob request.
*/ inline CreateJobRequest& WithDetails(RequestDetails&& value) { SetDetails(std::move(value)); return *this;} /** *The type of job to be created.
*/ inline const Type& GetType() const{ return m_type; } /** *The type of job to be created.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of job to be created.
*/ inline void SetType(const Type& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of job to be created.
*/ inline void SetType(Type&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of job to be created.
*/ inline CreateJobRequest& WithType(const Type& value) { SetType(value); return *this;} /** *The type of job to be created.
*/ inline CreateJobRequest& WithType(Type&& value) { SetType(std::move(value)); return *this;} private: RequestDetails m_details; bool m_detailsHasBeenSet; Type m_type; bool m_typeHasBeenSet; }; } // namespace Model } // namespace DataExchange } // namespace Aws