183 lines
5.7 KiB
C++
183 lines
5.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ecr/ECR_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace ECR
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_ECR_API DeleteLifecyclePolicyResult
|
|
{
|
|
public:
|
|
DeleteLifecyclePolicyResult();
|
|
DeleteLifecyclePolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DeleteLifecyclePolicyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline const Aws::String& GetRegistryId() const{ return m_registryId; }
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline void SetRegistryId(const Aws::String& value) { m_registryId = value; }
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline void SetRegistryId(Aws::String&& value) { m_registryId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline void SetRegistryId(const char* value) { m_registryId.assign(value); }
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithRegistryId(const Aws::String& value) { SetRegistryId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithRegistryId(Aws::String&& value) { SetRegistryId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The registry ID associated with the request.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithRegistryId(const char* value) { SetRegistryId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; }
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline void SetRepositoryName(const Aws::String& value) { m_repositoryName = value; }
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline void SetRepositoryName(Aws::String&& value) { m_repositoryName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline void SetRepositoryName(const char* value) { m_repositoryName.assign(value); }
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The repository name associated with the request.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline const Aws::String& GetLifecyclePolicyText() const{ return m_lifecyclePolicyText; }
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline void SetLifecyclePolicyText(const Aws::String& value) { m_lifecyclePolicyText = value; }
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline void SetLifecyclePolicyText(Aws::String&& value) { m_lifecyclePolicyText = std::move(value); }
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline void SetLifecyclePolicyText(const char* value) { m_lifecyclePolicyText.assign(value); }
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithLifecyclePolicyText(const Aws::String& value) { SetLifecyclePolicyText(value); return *this;}
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithLifecyclePolicyText(Aws::String&& value) { SetLifecyclePolicyText(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The JSON lifecycle policy text.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithLifecyclePolicyText(const char* value) { SetLifecyclePolicyText(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastEvaluatedAt() const{ return m_lastEvaluatedAt; }
|
|
|
|
/**
|
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
*/
|
|
inline void SetLastEvaluatedAt(const Aws::Utils::DateTime& value) { m_lastEvaluatedAt = value; }
|
|
|
|
/**
|
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
*/
|
|
inline void SetLastEvaluatedAt(Aws::Utils::DateTime&& value) { m_lastEvaluatedAt = std::move(value); }
|
|
|
|
/**
|
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithLastEvaluatedAt(const Aws::Utils::DateTime& value) { SetLastEvaluatedAt(value); return *this;}
|
|
|
|
/**
|
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
*/
|
|
inline DeleteLifecyclePolicyResult& WithLastEvaluatedAt(Aws::Utils::DateTime&& value) { SetLastEvaluatedAt(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_registryId;
|
|
|
|
Aws::String m_repositoryName;
|
|
|
|
Aws::String m_lifecyclePolicyText;
|
|
|
|
Aws::Utils::DateTime m_lastEvaluatedAt;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ECR
|
|
} // namespace Aws
|