/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace RedshiftServerless { namespace Model { /** *

The resource policy object. Currently, you can use policies to share * snapshots across Amazon Web Services accounts.

See Also:

AWS * API Reference

*/ class ResourcePolicy { public: AWS_REDSHIFTSERVERLESS_API ResourcePolicy(); AWS_REDSHIFTSERVERLESS_API ResourcePolicy(Aws::Utils::Json::JsonView jsonValue); AWS_REDSHIFTSERVERLESS_API ResourcePolicy& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_REDSHIFTSERVERLESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The resource policy.

*/ inline const Aws::String& GetPolicy() const{ return m_policy; } /** *

The resource policy.

*/ inline bool PolicyHasBeenSet() const { return m_policyHasBeenSet; } /** *

The resource policy.

*/ inline void SetPolicy(const Aws::String& value) { m_policyHasBeenSet = true; m_policy = value; } /** *

The resource policy.

*/ inline void SetPolicy(Aws::String&& value) { m_policyHasBeenSet = true; m_policy = std::move(value); } /** *

The resource policy.

*/ inline void SetPolicy(const char* value) { m_policyHasBeenSet = true; m_policy.assign(value); } /** *

The resource policy.

*/ inline ResourcePolicy& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;} /** *

The resource policy.

*/ inline ResourcePolicy& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;} /** *

The resource policy.

*/ inline ResourcePolicy& WithPolicy(const char* value) { SetPolicy(value); return *this;} /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline const Aws::String& GetResourceArn() const{ return m_resourceArn; } /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; } /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline ResourcePolicy& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline ResourcePolicy& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the policy.

*/ inline ResourcePolicy& WithResourceArn(const char* value) { SetResourceArn(value); return *this;} private: Aws::String m_policy; bool m_policyHasBeenSet = false; Aws::String m_resourceArn; bool m_resourceArnHasBeenSet = false; }; } // namespace Model } // namespace RedshiftServerless } // namespace Aws