/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ResilienceHub::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DeleteResiliencyPolicyRequest::DeleteResiliencyPolicyRequest() : m_clientToken(Aws::Utils::UUID::PseudoRandomUUID()), m_clientTokenHasBeenSet(true), m_policyArnHasBeenSet(false) { } Aws::String DeleteResiliencyPolicyRequest::SerializePayload() const { JsonValue payload; if(m_clientTokenHasBeenSet) { payload.WithString("clientToken", m_clientToken); } if(m_policyArnHasBeenSet) { payload.WithString("policyArn", m_policyArn); } return payload.View().WriteReadable(); }