Lesson 35 - Get Compute Auth Token Working
This commit is contained in:
@@ -0,0 +1,110 @@
|
||||
/**
|
||||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
* SPDX-License-Identifier: Apache-2.0.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <aws/lambda/Lambda_EXPORTS.h>
|
||||
#include <aws/lambda/LambdaRequest.h>
|
||||
#include <aws/core/utils/memory/stl/AWSString.h>
|
||||
#include <utility>
|
||||
|
||||
namespace Aws
|
||||
{
|
||||
namespace Http
|
||||
{
|
||||
class URI;
|
||||
} //namespace Http
|
||||
namespace Lambda
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
class RemoveLayerVersionPermissionRequest : public LambdaRequest
|
||||
{
|
||||
public:
|
||||
AWS_LAMBDA_API RemoveLayerVersionPermissionRequest();
|
||||
|
||||
// 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 "RemoveLayerVersionPermission"; }
|
||||
|
||||
AWS_LAMBDA_API Aws::String SerializePayload() const override;
|
||||
|
||||
AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
|
||||
|
||||
|
||||
///@{
|
||||
/**
|
||||
* <p>The name or Amazon Resource Name (ARN) of the layer.</p>
|
||||
*/
|
||||
inline const Aws::String& GetLayerName() const{ return m_layerName; }
|
||||
inline bool LayerNameHasBeenSet() const { return m_layerNameHasBeenSet; }
|
||||
inline void SetLayerName(const Aws::String& value) { m_layerNameHasBeenSet = true; m_layerName = value; }
|
||||
inline void SetLayerName(Aws::String&& value) { m_layerNameHasBeenSet = true; m_layerName = std::move(value); }
|
||||
inline void SetLayerName(const char* value) { m_layerNameHasBeenSet = true; m_layerName.assign(value); }
|
||||
inline RemoveLayerVersionPermissionRequest& WithLayerName(const Aws::String& value) { SetLayerName(value); return *this;}
|
||||
inline RemoveLayerVersionPermissionRequest& WithLayerName(Aws::String&& value) { SetLayerName(std::move(value)); return *this;}
|
||||
inline RemoveLayerVersionPermissionRequest& WithLayerName(const char* value) { SetLayerName(value); return *this;}
|
||||
///@}
|
||||
|
||||
///@{
|
||||
/**
|
||||
* <p>The version number.</p>
|
||||
*/
|
||||
inline long long GetVersionNumber() const{ return m_versionNumber; }
|
||||
inline bool VersionNumberHasBeenSet() const { return m_versionNumberHasBeenSet; }
|
||||
inline void SetVersionNumber(long long value) { m_versionNumberHasBeenSet = true; m_versionNumber = value; }
|
||||
inline RemoveLayerVersionPermissionRequest& WithVersionNumber(long long value) { SetVersionNumber(value); return *this;}
|
||||
///@}
|
||||
|
||||
///@{
|
||||
/**
|
||||
* <p>The identifier that was specified when the statement was added.</p>
|
||||
*/
|
||||
inline const Aws::String& GetStatementId() const{ return m_statementId; }
|
||||
inline bool StatementIdHasBeenSet() const { return m_statementIdHasBeenSet; }
|
||||
inline void SetStatementId(const Aws::String& value) { m_statementIdHasBeenSet = true; m_statementId = value; }
|
||||
inline void SetStatementId(Aws::String&& value) { m_statementIdHasBeenSet = true; m_statementId = std::move(value); }
|
||||
inline void SetStatementId(const char* value) { m_statementIdHasBeenSet = true; m_statementId.assign(value); }
|
||||
inline RemoveLayerVersionPermissionRequest& WithStatementId(const Aws::String& value) { SetStatementId(value); return *this;}
|
||||
inline RemoveLayerVersionPermissionRequest& WithStatementId(Aws::String&& value) { SetStatementId(std::move(value)); return *this;}
|
||||
inline RemoveLayerVersionPermissionRequest& WithStatementId(const char* value) { SetStatementId(value); return *this;}
|
||||
///@}
|
||||
|
||||
///@{
|
||||
/**
|
||||
* <p>Only update the policy if the revision ID matches the ID specified. Use this
|
||||
* option to avoid modifying a policy that has changed since you last read it.</p>
|
||||
*/
|
||||
inline const Aws::String& GetRevisionId() const{ return m_revisionId; }
|
||||
inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; }
|
||||
inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; }
|
||||
inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); }
|
||||
inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); }
|
||||
inline RemoveLayerVersionPermissionRequest& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;}
|
||||
inline RemoveLayerVersionPermissionRequest& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;}
|
||||
inline RemoveLayerVersionPermissionRequest& WithRevisionId(const char* value) { SetRevisionId(value); return *this;}
|
||||
///@}
|
||||
private:
|
||||
|
||||
Aws::String m_layerName;
|
||||
bool m_layerNameHasBeenSet = false;
|
||||
|
||||
long long m_versionNumber;
|
||||
bool m_versionNumberHasBeenSet = false;
|
||||
|
||||
Aws::String m_statementId;
|
||||
bool m_statementIdHasBeenSet = false;
|
||||
|
||||
Aws::String m_revisionId;
|
||||
bool m_revisionIdHasBeenSet = false;
|
||||
};
|
||||
|
||||
} // namespace Model
|
||||
} // namespace Lambda
|
||||
} // namespace Aws
|
||||
Reference in New Issue
Block a user