118 lines
3.9 KiB
C++
118 lines
3.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
|
|
#include <aws/devicefarm/DeviceFarmRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace DeviceFarm
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_DEVICEFARM_API CreateTestGridUrlRequest : public DeviceFarmRequest
|
|
{
|
|
public:
|
|
CreateTestGridUrlRequest();
|
|
|
|
// 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 "CreateTestGridUrl"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline const Aws::String& GetProjectArn() const{ return m_projectArn; }
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline bool ProjectArnHasBeenSet() const { return m_projectArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline void SetProjectArn(const Aws::String& value) { m_projectArnHasBeenSet = true; m_projectArn = value; }
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline void SetProjectArn(Aws::String&& value) { m_projectArnHasBeenSet = true; m_projectArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline void SetProjectArn(const char* value) { m_projectArnHasBeenSet = true; m_projectArn.assign(value); }
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline CreateTestGridUrlRequest& WithProjectArn(const Aws::String& value) { SetProjectArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline CreateTestGridUrlRequest& WithProjectArn(Aws::String&& value) { SetProjectArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>ARN (from <a>CreateTestGridProject</a> or <a>ListTestGridProjects</a>) to
|
|
* associate with the short-term URL. </p>
|
|
*/
|
|
inline CreateTestGridUrlRequest& WithProjectArn(const char* value) { SetProjectArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Lifetime, in seconds, of the URL.</p>
|
|
*/
|
|
inline int GetExpiresInSeconds() const{ return m_expiresInSeconds; }
|
|
|
|
/**
|
|
* <p>Lifetime, in seconds, of the URL.</p>
|
|
*/
|
|
inline bool ExpiresInSecondsHasBeenSet() const { return m_expiresInSecondsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Lifetime, in seconds, of the URL.</p>
|
|
*/
|
|
inline void SetExpiresInSeconds(int value) { m_expiresInSecondsHasBeenSet = true; m_expiresInSeconds = value; }
|
|
|
|
/**
|
|
* <p>Lifetime, in seconds, of the URL.</p>
|
|
*/
|
|
inline CreateTestGridUrlRequest& WithExpiresInSeconds(int value) { SetExpiresInSeconds(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_projectArn;
|
|
bool m_projectArnHasBeenSet;
|
|
|
|
int m_expiresInSeconds;
|
|
bool m_expiresInSecondsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DeviceFarm
|
|
} // namespace Aws
|