/** * 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 CloudWatchLogs { namespace Model { /** */ class AWS_CLOUDWATCHLOGS_API PutResourcePolicyRequest : public CloudWatchLogsRequest { public: PutResourcePolicyRequest(); // 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 "PutResourcePolicy"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Name of the new policy. This parameter is required.

*/ inline const Aws::String& GetPolicyName() const{ return m_policyName; } /** *

Name of the new policy. This parameter is required.

*/ inline bool PolicyNameHasBeenSet() const { return m_policyNameHasBeenSet; } /** *

Name of the new policy. This parameter is required.

*/ inline void SetPolicyName(const Aws::String& value) { m_policyNameHasBeenSet = true; m_policyName = value; } /** *

Name of the new policy. This parameter is required.

*/ inline void SetPolicyName(Aws::String&& value) { m_policyNameHasBeenSet = true; m_policyName = std::move(value); } /** *

Name of the new policy. This parameter is required.

*/ inline void SetPolicyName(const char* value) { m_policyNameHasBeenSet = true; m_policyName.assign(value); } /** *

Name of the new policy. This parameter is required.

*/ inline PutResourcePolicyRequest& WithPolicyName(const Aws::String& value) { SetPolicyName(value); return *this;} /** *

Name of the new policy. This parameter is required.

*/ inline PutResourcePolicyRequest& WithPolicyName(Aws::String&& value) { SetPolicyName(std::move(value)); return *this;} /** *

Name of the new policy. This parameter is required.

*/ inline PutResourcePolicyRequest& WithPolicyName(const char* value) { SetPolicyName(value); return *this;} /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline const Aws::String& GetPolicyDocument() const{ return m_policyDocument; } /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline bool PolicyDocumentHasBeenSet() const { return m_policyDocumentHasBeenSet; } /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline void SetPolicyDocument(const Aws::String& value) { m_policyDocumentHasBeenSet = true; m_policyDocument = value; } /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline void SetPolicyDocument(Aws::String&& value) { m_policyDocumentHasBeenSet = true; m_policyDocument = std::move(value); } /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline void SetPolicyDocument(const char* value) { m_policyDocumentHasBeenSet = true; m_policyDocument.assign(value); } /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline PutResourcePolicyRequest& WithPolicyDocument(const Aws::String& value) { SetPolicyDocument(value); return *this;} /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline PutResourcePolicyRequest& WithPolicyDocument(Aws::String&& value) { SetPolicyDocument(std::move(value)); return *this;} /** *

Details of the new policy, including the identity of the principal that is * enabled to put logs to this account. This is formatted as a JSON string. This * parameter is required.

The following example creates a resource policy * enabling the Route 53 service to put DNS query logs in to the specified log * group. Replace "logArn" with the ARN of your CloudWatch Logs * resource, such as a log group or log stream.

{ "Version": * "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": * "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, * "Action":"logs:PutLogEvents", "Resource": "logArn" } ] }

*/ inline PutResourcePolicyRequest& WithPolicyDocument(const char* value) { SetPolicyDocument(value); return *this;} private: Aws::String m_policyName; bool m_policyNameHasBeenSet; Aws::String m_policyDocument; bool m_policyDocumentHasBeenSet; }; } // namespace Model } // namespace CloudWatchLogs } // namespace Aws