/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ECR { namespace Model { class DeletePullThroughCacheRuleResult { public: AWS_ECR_API DeletePullThroughCacheRuleResult(); AWS_ECR_API DeletePullThroughCacheRuleResult(const Aws::AmazonWebServiceResult& result); AWS_ECR_API DeletePullThroughCacheRuleResult& operator=(const Aws::AmazonWebServiceResult& result); ///@{ /** *

The Amazon ECR repository prefix associated with the request.

*/ inline const Aws::String& GetEcrRepositoryPrefix() const{ return m_ecrRepositoryPrefix; } inline void SetEcrRepositoryPrefix(const Aws::String& value) { m_ecrRepositoryPrefix = value; } inline void SetEcrRepositoryPrefix(Aws::String&& value) { m_ecrRepositoryPrefix = std::move(value); } inline void SetEcrRepositoryPrefix(const char* value) { m_ecrRepositoryPrefix.assign(value); } inline DeletePullThroughCacheRuleResult& WithEcrRepositoryPrefix(const Aws::String& value) { SetEcrRepositoryPrefix(value); return *this;} inline DeletePullThroughCacheRuleResult& WithEcrRepositoryPrefix(Aws::String&& value) { SetEcrRepositoryPrefix(std::move(value)); return *this;} inline DeletePullThroughCacheRuleResult& WithEcrRepositoryPrefix(const char* value) { SetEcrRepositoryPrefix(value); return *this;} ///@} ///@{ /** *

The upstream registry URL associated with the pull through cache rule.

*/ inline const Aws::String& GetUpstreamRegistryUrl() const{ return m_upstreamRegistryUrl; } inline void SetUpstreamRegistryUrl(const Aws::String& value) { m_upstreamRegistryUrl = value; } inline void SetUpstreamRegistryUrl(Aws::String&& value) { m_upstreamRegistryUrl = std::move(value); } inline void SetUpstreamRegistryUrl(const char* value) { m_upstreamRegistryUrl.assign(value); } inline DeletePullThroughCacheRuleResult& WithUpstreamRegistryUrl(const Aws::String& value) { SetUpstreamRegistryUrl(value); return *this;} inline DeletePullThroughCacheRuleResult& WithUpstreamRegistryUrl(Aws::String&& value) { SetUpstreamRegistryUrl(std::move(value)); return *this;} inline DeletePullThroughCacheRuleResult& WithUpstreamRegistryUrl(const char* value) { SetUpstreamRegistryUrl(value); return *this;} ///@} ///@{ /** *

The timestamp associated with the pull through cache rule.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; } inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); } inline DeletePullThroughCacheRuleResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} inline DeletePullThroughCacheRuleResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} ///@} ///@{ /** *

The registry ID associated with the request.

*/ inline const Aws::String& GetRegistryId() const{ return m_registryId; } inline void SetRegistryId(const Aws::String& value) { m_registryId = value; } inline void SetRegistryId(Aws::String&& value) { m_registryId = std::move(value); } inline void SetRegistryId(const char* value) { m_registryId.assign(value); } inline DeletePullThroughCacheRuleResult& WithRegistryId(const Aws::String& value) { SetRegistryId(value); return *this;} inline DeletePullThroughCacheRuleResult& WithRegistryId(Aws::String&& value) { SetRegistryId(std::move(value)); return *this;} inline DeletePullThroughCacheRuleResult& WithRegistryId(const char* value) { SetRegistryId(value); return *this;} ///@} ///@{ /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager * secret associated with the pull through cache rule.

*/ inline const Aws::String& GetCredentialArn() const{ return m_credentialArn; } inline void SetCredentialArn(const Aws::String& value) { m_credentialArn = value; } inline void SetCredentialArn(Aws::String&& value) { m_credentialArn = std::move(value); } inline void SetCredentialArn(const char* value) { m_credentialArn.assign(value); } inline DeletePullThroughCacheRuleResult& WithCredentialArn(const Aws::String& value) { SetCredentialArn(value); return *this;} inline DeletePullThroughCacheRuleResult& WithCredentialArn(Aws::String&& value) { SetCredentialArn(std::move(value)); return *this;} inline DeletePullThroughCacheRuleResult& WithCredentialArn(const char* value) { SetCredentialArn(value); return *this;} ///@} ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeletePullThroughCacheRuleResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeletePullThroughCacheRuleResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeletePullThroughCacheRuleResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} ///@} private: Aws::String m_ecrRepositoryPrefix; Aws::String m_upstreamRegistryUrl; Aws::Utils::DateTime m_createdAt; Aws::String m_registryId; Aws::String m_credentialArn; Aws::String m_requestId; }; } // namespace Model } // namespace ECR } // namespace Aws