/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Lambda { namespace Model { class PutFunctionCodeSigningConfigResult { public: AWS_LAMBDA_API PutFunctionCodeSigningConfigResult(); AWS_LAMBDA_API PutFunctionCodeSigningConfigResult(const Aws::AmazonWebServiceResult& result); AWS_LAMBDA_API PutFunctionCodeSigningConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline const Aws::String& GetCodeSigningConfigArn() const{ return m_codeSigningConfigArn; } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline void SetCodeSigningConfigArn(const Aws::String& value) { m_codeSigningConfigArn = value; } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline void SetCodeSigningConfigArn(Aws::String&& value) { m_codeSigningConfigArn = std::move(value); } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline void SetCodeSigningConfigArn(const char* value) { m_codeSigningConfigArn.assign(value); } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline PutFunctionCodeSigningConfigResult& WithCodeSigningConfigArn(const Aws::String& value) { SetCodeSigningConfigArn(value); return *this;} /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline PutFunctionCodeSigningConfigResult& WithCodeSigningConfigArn(Aws::String&& value) { SetCodeSigningConfigArn(std::move(value)); return *this;} /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline PutFunctionCodeSigningConfigResult& WithCodeSigningConfigArn(const char* value) { SetCodeSigningConfigArn(value); return *this;} /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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_functionName = value; } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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_functionName = std::move(value); } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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_functionName.assign(value); } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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 PutFunctionCodeSigningConfigResult& WithFunctionName(const Aws::String& value) { SetFunctionName(value); return *this;} /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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 PutFunctionCodeSigningConfigResult& WithFunctionName(Aws::String&& value) { SetFunctionName(std::move(value)); return *this;} /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

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

    *
  • Partial ARN - * 123456789012:function:MyFunction.

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 PutFunctionCodeSigningConfigResult& WithFunctionName(const char* value) { SetFunctionName(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline PutFunctionCodeSigningConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutFunctionCodeSigningConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutFunctionCodeSigningConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_codeSigningConfigArn; Aws::String m_functionName; Aws::String m_requestId; }; } // namespace Model } // namespace Lambda } // namespace Aws