This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-snowball/source/model/S3Resource.cpp

75 lines
1.2 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/snowball/model/S3Resource.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Snowball
{
namespace Model
{
S3Resource::S3Resource() :
m_bucketArnHasBeenSet(false),
m_keyRangeHasBeenSet(false)
{
}
S3Resource::S3Resource(JsonView jsonValue) :
m_bucketArnHasBeenSet(false),
m_keyRangeHasBeenSet(false)
{
*this = jsonValue;
}
S3Resource& S3Resource::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("BucketArn"))
{
m_bucketArn = jsonValue.GetString("BucketArn");
m_bucketArnHasBeenSet = true;
}
if(jsonValue.ValueExists("KeyRange"))
{
m_keyRange = jsonValue.GetObject("KeyRange");
m_keyRangeHasBeenSet = true;
}
return *this;
}
JsonValue S3Resource::Jsonize() const
{
JsonValue payload;
if(m_bucketArnHasBeenSet)
{
payload.WithString("BucketArn", m_bucketArn);
}
if(m_keyRangeHasBeenSet)
{
payload.WithObject("KeyRange", m_keyRange.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace Snowball
} // namespace Aws