/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaPackageVod { namespace Model { /** * A MediaPackage VOD PackagingGroup resource.

See Also:

AWS * API Reference

*/ class PackagingGroup { public: AWS_MEDIAPACKAGEVOD_API PackagingGroup(); AWS_MEDIAPACKAGEVOD_API PackagingGroup(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIAPACKAGEVOD_API PackagingGroup& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIAPACKAGEVOD_API Aws::Utils::Json::JsonValue Jsonize() const; /** * The approximate asset count of the PackagingGroup. */ inline int GetApproximateAssetCount() const{ return m_approximateAssetCount; } /** * The approximate asset count of the PackagingGroup. */ inline bool ApproximateAssetCountHasBeenSet() const { return m_approximateAssetCountHasBeenSet; } /** * The approximate asset count of the PackagingGroup. */ inline void SetApproximateAssetCount(int value) { m_approximateAssetCountHasBeenSet = true; m_approximateAssetCount = value; } /** * The approximate asset count of the PackagingGroup. */ inline PackagingGroup& WithApproximateAssetCount(int value) { SetApproximateAssetCount(value); return *this;} /** * The ARN of the PackagingGroup. */ inline const Aws::String& GetArn() const{ return m_arn; } /** * The ARN of the PackagingGroup. */ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** * The ARN of the PackagingGroup. */ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** * The ARN of the PackagingGroup. */ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** * The ARN of the PackagingGroup. */ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** * The ARN of the PackagingGroup. */ inline PackagingGroup& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** * The ARN of the PackagingGroup. */ inline PackagingGroup& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** * The ARN of the PackagingGroup. */ inline PackagingGroup& WithArn(const char* value) { SetArn(value); return *this;} inline const Authorization& GetAuthorization() const{ return m_authorization; } inline bool AuthorizationHasBeenSet() const { return m_authorizationHasBeenSet; } inline void SetAuthorization(const Authorization& value) { m_authorizationHasBeenSet = true; m_authorization = value; } inline void SetAuthorization(Authorization&& value) { m_authorizationHasBeenSet = true; m_authorization = std::move(value); } inline PackagingGroup& WithAuthorization(const Authorization& value) { SetAuthorization(value); return *this;} inline PackagingGroup& WithAuthorization(Authorization&& value) { SetAuthorization(std::move(value)); return *this;} /** * The time the PackagingGroup was created. */ inline const Aws::String& GetCreatedAt() const{ return m_createdAt; } /** * The time the PackagingGroup was created. */ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** * The time the PackagingGroup was created. */ inline void SetCreatedAt(const Aws::String& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** * The time the PackagingGroup was created. */ inline void SetCreatedAt(Aws::String&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** * The time the PackagingGroup was created. */ inline void SetCreatedAt(const char* value) { m_createdAtHasBeenSet = true; m_createdAt.assign(value); } /** * The time the PackagingGroup was created. */ inline PackagingGroup& WithCreatedAt(const Aws::String& value) { SetCreatedAt(value); return *this;} /** * The time the PackagingGroup was created. */ inline PackagingGroup& WithCreatedAt(Aws::String&& value) { SetCreatedAt(std::move(value)); return *this;} /** * The time the PackagingGroup was created. */ inline PackagingGroup& WithCreatedAt(const char* value) { SetCreatedAt(value); return *this;} /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline PackagingGroup& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline PackagingGroup& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** * The fully qualified domain name for Assets in the PackagingGroup. */ inline PackagingGroup& WithDomainName(const char* value) { SetDomainName(value); return *this;} inline const EgressAccessLogs& GetEgressAccessLogs() const{ return m_egressAccessLogs; } inline bool EgressAccessLogsHasBeenSet() const { return m_egressAccessLogsHasBeenSet; } inline void SetEgressAccessLogs(const EgressAccessLogs& value) { m_egressAccessLogsHasBeenSet = true; m_egressAccessLogs = value; } inline void SetEgressAccessLogs(EgressAccessLogs&& value) { m_egressAccessLogsHasBeenSet = true; m_egressAccessLogs = std::move(value); } inline PackagingGroup& WithEgressAccessLogs(const EgressAccessLogs& value) { SetEgressAccessLogs(value); return *this;} inline PackagingGroup& WithEgressAccessLogs(EgressAccessLogs&& value) { SetEgressAccessLogs(std::move(value)); return *this;} /** * The ID of the PackagingGroup. */ inline const Aws::String& GetId() const{ return m_id; } /** * The ID of the PackagingGroup. */ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** * The ID of the PackagingGroup. */ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** * The ID of the PackagingGroup. */ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** * The ID of the PackagingGroup. */ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** * The ID of the PackagingGroup. */ inline PackagingGroup& WithId(const Aws::String& value) { SetId(value); return *this;} /** * The ID of the PackagingGroup. */ inline PackagingGroup& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** * The ID of the PackagingGroup. */ inline PackagingGroup& WithId(const char* value) { SetId(value); return *this;} inline const Aws::Map& GetTags() const{ return m_tags; } inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } inline void SetTags(const Aws::Map& value) { m_tagsHasBeenSet = true; m_tags = value; } inline void SetTags(Aws::Map&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } inline PackagingGroup& WithTags(const Aws::Map& value) { SetTags(value); return *this;} inline PackagingGroup& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} inline PackagingGroup& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } inline PackagingGroup& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } inline PackagingGroup& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } inline PackagingGroup& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } inline PackagingGroup& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } inline PackagingGroup& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } inline PackagingGroup& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } private: int m_approximateAssetCount; bool m_approximateAssetCountHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Authorization m_authorization; bool m_authorizationHasBeenSet = false; Aws::String m_createdAt; bool m_createdAtHasBeenSet = false; Aws::String m_domainName; bool m_domainNameHasBeenSet = false; EgressAccessLogs m_egressAccessLogs; bool m_egressAccessLogsHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace MediaPackageVod } // namespace Aws