/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ECR { namespace Model { /** *

The details of a pull through cache rule.

See Also:

AWS * API Reference

*/ class PullThroughCacheRule { public: AWS_ECR_API PullThroughCacheRule(); AWS_ECR_API PullThroughCacheRule(Aws::Utils::Json::JsonView jsonValue); AWS_ECR_API PullThroughCacheRule& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ECR_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline const Aws::String& GetEcrRepositoryPrefix() const{ return m_ecrRepositoryPrefix; } /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline bool EcrRepositoryPrefixHasBeenSet() const { return m_ecrRepositoryPrefixHasBeenSet; } /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline void SetEcrRepositoryPrefix(const Aws::String& value) { m_ecrRepositoryPrefixHasBeenSet = true; m_ecrRepositoryPrefix = value; } /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline void SetEcrRepositoryPrefix(Aws::String&& value) { m_ecrRepositoryPrefixHasBeenSet = true; m_ecrRepositoryPrefix = std::move(value); } /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline void SetEcrRepositoryPrefix(const char* value) { m_ecrRepositoryPrefixHasBeenSet = true; m_ecrRepositoryPrefix.assign(value); } /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline PullThroughCacheRule& WithEcrRepositoryPrefix(const Aws::String& value) { SetEcrRepositoryPrefix(value); return *this;} /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline PullThroughCacheRule& WithEcrRepositoryPrefix(Aws::String&& value) { SetEcrRepositoryPrefix(std::move(value)); return *this;} /** *

The Amazon ECR repository prefix associated with the pull through cache * rule.

*/ inline PullThroughCacheRule& 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; } /** *

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

*/ inline bool UpstreamRegistryUrlHasBeenSet() const { return m_upstreamRegistryUrlHasBeenSet; } /** *

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

*/ inline void SetUpstreamRegistryUrl(const Aws::String& value) { m_upstreamRegistryUrlHasBeenSet = true; m_upstreamRegistryUrl = value; } /** *

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

*/ inline void SetUpstreamRegistryUrl(Aws::String&& value) { m_upstreamRegistryUrlHasBeenSet = true; m_upstreamRegistryUrl = std::move(value); } /** *

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

*/ inline void SetUpstreamRegistryUrl(const char* value) { m_upstreamRegistryUrlHasBeenSet = true; m_upstreamRegistryUrl.assign(value); } /** *

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

*/ inline PullThroughCacheRule& WithUpstreamRegistryUrl(const Aws::String& value) { SetUpstreamRegistryUrl(value); return *this;} /** *

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

*/ inline PullThroughCacheRule& WithUpstreamRegistryUrl(Aws::String&& value) { SetUpstreamRegistryUrl(std::move(value)); return *this;} /** *

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

*/ inline PullThroughCacheRule& WithUpstreamRegistryUrl(const char* value) { SetUpstreamRegistryUrl(value); return *this;} /** *

The date and time the pull through cache was created.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

The date and time the pull through cache was created.

*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *

The date and time the pull through cache was created.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *

The date and time the pull through cache was created.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *

The date and time the pull through cache was created.

*/ inline PullThroughCacheRule& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

The date and time the pull through cache was created.

*/ inline PullThroughCacheRule& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline const Aws::String& GetRegistryId() const{ return m_registryId; } /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline bool RegistryIdHasBeenSet() const { return m_registryIdHasBeenSet; } /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline void SetRegistryId(const Aws::String& value) { m_registryIdHasBeenSet = true; m_registryId = value; } /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline void SetRegistryId(Aws::String&& value) { m_registryIdHasBeenSet = true; m_registryId = std::move(value); } /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline void SetRegistryId(const char* value) { m_registryIdHasBeenSet = true; m_registryId.assign(value); } /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline PullThroughCacheRule& WithRegistryId(const Aws::String& value) { SetRegistryId(value); return *this;} /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline PullThroughCacheRule& WithRegistryId(Aws::String&& value) { SetRegistryId(std::move(value)); return *this;} /** *

The Amazon Web Services account ID associated with the registry the pull * through cache rule is associated with.

*/ inline PullThroughCacheRule& WithRegistryId(const char* value) { SetRegistryId(value); return *this;} private: Aws::String m_ecrRepositoryPrefix; bool m_ecrRepositoryPrefixHasBeenSet = false; Aws::String m_upstreamRegistryUrl; bool m_upstreamRegistryUrlHasBeenSet = false; Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::String m_registryId; bool m_registryIdHasBeenSet = false; }; } // namespace Model } // namespace ECR } // namespace Aws