/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace Lambda { namespace Model { /** */ class RemovePermissionRequest : public LambdaRequest { public: AWS_LAMBDA_API RemovePermissionRequest(); // 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 "RemovePermission"; } AWS_LAMBDA_API Aws::String SerializePayload() const override; AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline const Aws::String& GetFunctionName() const{ return m_functionName; } /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; } /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline void SetFunctionName(const Aws::String& value) { m_functionNameHasBeenSet = true; m_functionName = value; } /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline void SetFunctionName(Aws::String&& value) { m_functionNameHasBeenSet = true; m_functionName = std::move(value); } /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline void SetFunctionName(const char* value) { m_functionNameHasBeenSet = true; m_functionName.assign(value); } /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline RemovePermissionRequest& WithFunctionName(const Aws::String& value) { SetFunctionName(value); return *this;} /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline RemovePermissionRequest& WithFunctionName(Aws::String&& value) { SetFunctionName(std::move(value)); return *this;} /** *

The name of the Lambda function, version, or alias.

* Name formats

  • Function name – * my-function (name-only), my-function:v1 (with * alias).

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

You can * append a version number or alias to any of the formats. The length constraint * applies only to the full ARN. If you specify only the function name, it is * limited to 64 characters in length.

*/ inline RemovePermissionRequest& WithFunctionName(const char* value) { SetFunctionName(value); return *this;} /** *

Statement ID of the permission to remove.

*/ inline const Aws::String& GetStatementId() const{ return m_statementId; } /** *

Statement ID of the permission to remove.

*/ inline bool StatementIdHasBeenSet() const { return m_statementIdHasBeenSet; } /** *

Statement ID of the permission to remove.

*/ inline void SetStatementId(const Aws::String& value) { m_statementIdHasBeenSet = true; m_statementId = value; } /** *

Statement ID of the permission to remove.

*/ inline void SetStatementId(Aws::String&& value) { m_statementIdHasBeenSet = true; m_statementId = std::move(value); } /** *

Statement ID of the permission to remove.

*/ inline void SetStatementId(const char* value) { m_statementIdHasBeenSet = true; m_statementId.assign(value); } /** *

Statement ID of the permission to remove.

*/ inline RemovePermissionRequest& WithStatementId(const Aws::String& value) { SetStatementId(value); return *this;} /** *

Statement ID of the permission to remove.

*/ inline RemovePermissionRequest& WithStatementId(Aws::String&& value) { SetStatementId(std::move(value)); return *this;} /** *

Statement ID of the permission to remove.

*/ inline RemovePermissionRequest& WithStatementId(const char* value) { SetStatementId(value); return *this;} /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline const Aws::String& GetQualifier() const{ return m_qualifier; } /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline bool QualifierHasBeenSet() const { return m_qualifierHasBeenSet; } /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline void SetQualifier(const Aws::String& value) { m_qualifierHasBeenSet = true; m_qualifier = value; } /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline void SetQualifier(Aws::String&& value) { m_qualifierHasBeenSet = true; m_qualifier = std::move(value); } /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline void SetQualifier(const char* value) { m_qualifierHasBeenSet = true; m_qualifier.assign(value); } /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline RemovePermissionRequest& WithQualifier(const Aws::String& value) { SetQualifier(value); return *this;} /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline RemovePermissionRequest& WithQualifier(Aws::String&& value) { SetQualifier(std::move(value)); return *this;} /** *

Specify a version or alias to remove permissions from a published version of * the function.

*/ inline RemovePermissionRequest& WithQualifier(const char* value) { SetQualifier(value); return *this;} /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; } /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; } /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); } /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); } /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline RemovePermissionRequest& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline RemovePermissionRequest& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

Update the policy only if the revision ID matches the ID that's specified. * Use this option to avoid modifying a policy that has changed since you last read * it.

*/ inline RemovePermissionRequest& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} private: Aws::String m_functionName; bool m_functionNameHasBeenSet = false; Aws::String m_statementId; bool m_statementIdHasBeenSet = false; Aws::String m_qualifier; bool m_qualifierHasBeenSet = false; Aws::String m_revisionId; bool m_revisionIdHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws