/** * 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 ChimeSDKVoice { namespace Model { /** *

A high-level summary of a voice profile.

See Also:

AWS * API Reference

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

The ID of the voice profile in a voice profile summary.

*/ inline const Aws::String& GetVoiceProfileId() const{ return m_voiceProfileId; } /** *

The ID of the voice profile in a voice profile summary.

*/ inline bool VoiceProfileIdHasBeenSet() const { return m_voiceProfileIdHasBeenSet; } /** *

The ID of the voice profile in a voice profile summary.

*/ inline void SetVoiceProfileId(const Aws::String& value) { m_voiceProfileIdHasBeenSet = true; m_voiceProfileId = value; } /** *

The ID of the voice profile in a voice profile summary.

*/ inline void SetVoiceProfileId(Aws::String&& value) { m_voiceProfileIdHasBeenSet = true; m_voiceProfileId = std::move(value); } /** *

The ID of the voice profile in a voice profile summary.

*/ inline void SetVoiceProfileId(const char* value) { m_voiceProfileIdHasBeenSet = true; m_voiceProfileId.assign(value); } /** *

The ID of the voice profile in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileId(const Aws::String& value) { SetVoiceProfileId(value); return *this;} /** *

The ID of the voice profile in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileId(Aws::String&& value) { SetVoiceProfileId(std::move(value)); return *this;} /** *

The ID of the voice profile in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileId(const char* value) { SetVoiceProfileId(value); return *this;} /** *

The ARN of the voice profile in a voice profile summary.

*/ inline const Aws::String& GetVoiceProfileArn() const{ return m_voiceProfileArn; } /** *

The ARN of the voice profile in a voice profile summary.

*/ inline bool VoiceProfileArnHasBeenSet() const { return m_voiceProfileArnHasBeenSet; } /** *

The ARN of the voice profile in a voice profile summary.

*/ inline void SetVoiceProfileArn(const Aws::String& value) { m_voiceProfileArnHasBeenSet = true; m_voiceProfileArn = value; } /** *

The ARN of the voice profile in a voice profile summary.

*/ inline void SetVoiceProfileArn(Aws::String&& value) { m_voiceProfileArnHasBeenSet = true; m_voiceProfileArn = std::move(value); } /** *

The ARN of the voice profile in a voice profile summary.

*/ inline void SetVoiceProfileArn(const char* value) { m_voiceProfileArnHasBeenSet = true; m_voiceProfileArn.assign(value); } /** *

The ARN of the voice profile in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileArn(const Aws::String& value) { SetVoiceProfileArn(value); return *this;} /** *

The ARN of the voice profile in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileArn(Aws::String&& value) { SetVoiceProfileArn(std::move(value)); return *this;} /** *

The ARN of the voice profile in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileArn(const char* value) { SetVoiceProfileArn(value); return *this;} /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline const Aws::String& GetVoiceProfileDomainId() const{ return m_voiceProfileDomainId; } /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline bool VoiceProfileDomainIdHasBeenSet() const { return m_voiceProfileDomainIdHasBeenSet; } /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline void SetVoiceProfileDomainId(const Aws::String& value) { m_voiceProfileDomainIdHasBeenSet = true; m_voiceProfileDomainId = value; } /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline void SetVoiceProfileDomainId(Aws::String&& value) { m_voiceProfileDomainIdHasBeenSet = true; m_voiceProfileDomainId = std::move(value); } /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline void SetVoiceProfileDomainId(const char* value) { m_voiceProfileDomainIdHasBeenSet = true; m_voiceProfileDomainId.assign(value); } /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileDomainId(const Aws::String& value) { SetVoiceProfileDomainId(value); return *this;} /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileDomainId(Aws::String&& value) { SetVoiceProfileDomainId(std::move(value)); return *this;} /** *

The ID of the voice profile domain in a voice profile summary.

*/ inline VoiceProfileSummary& WithVoiceProfileDomainId(const char* value) { SetVoiceProfileDomainId(value); return *this;} /** *

The time at which a voice profile summary was created.

*/ inline const Aws::Utils::DateTime& GetCreatedTimestamp() const{ return m_createdTimestamp; } /** *

The time at which a voice profile summary was created.

*/ inline bool CreatedTimestampHasBeenSet() const { return m_createdTimestampHasBeenSet; } /** *

The time at which a voice profile summary was created.

*/ inline void SetCreatedTimestamp(const Aws::Utils::DateTime& value) { m_createdTimestampHasBeenSet = true; m_createdTimestamp = value; } /** *

The time at which a voice profile summary was created.

*/ inline void SetCreatedTimestamp(Aws::Utils::DateTime&& value) { m_createdTimestampHasBeenSet = true; m_createdTimestamp = std::move(value); } /** *

The time at which a voice profile summary was created.

*/ inline VoiceProfileSummary& WithCreatedTimestamp(const Aws::Utils::DateTime& value) { SetCreatedTimestamp(value); return *this;} /** *

The time at which a voice profile summary was created.

*/ inline VoiceProfileSummary& WithCreatedTimestamp(Aws::Utils::DateTime&& value) { SetCreatedTimestamp(std::move(value)); return *this;} /** *

The time at which a voice profile summary was last updated.

*/ inline const Aws::Utils::DateTime& GetUpdatedTimestamp() const{ return m_updatedTimestamp; } /** *

The time at which a voice profile summary was last updated.

*/ inline bool UpdatedTimestampHasBeenSet() const { return m_updatedTimestampHasBeenSet; } /** *

The time at which a voice profile summary was last updated.

*/ inline void SetUpdatedTimestamp(const Aws::Utils::DateTime& value) { m_updatedTimestampHasBeenSet = true; m_updatedTimestamp = value; } /** *

The time at which a voice profile summary was last updated.

*/ inline void SetUpdatedTimestamp(Aws::Utils::DateTime&& value) { m_updatedTimestampHasBeenSet = true; m_updatedTimestamp = std::move(value); } /** *

The time at which a voice profile summary was last updated.

*/ inline VoiceProfileSummary& WithUpdatedTimestamp(const Aws::Utils::DateTime& value) { SetUpdatedTimestamp(value); return *this;} /** *

The time at which a voice profile summary was last updated.

*/ inline VoiceProfileSummary& WithUpdatedTimestamp(Aws::Utils::DateTime&& value) { SetUpdatedTimestamp(std::move(value)); return *this;} /** *

Extends the life of the voice profile. You can use * UpdateVoiceProfile to refresh an existing voice profile's voice * print and extend the life of the summary.

*/ inline const Aws::Utils::DateTime& GetExpirationTimestamp() const{ return m_expirationTimestamp; } /** *

Extends the life of the voice profile. You can use * UpdateVoiceProfile to refresh an existing voice profile's voice * print and extend the life of the summary.

*/ inline bool ExpirationTimestampHasBeenSet() const { return m_expirationTimestampHasBeenSet; } /** *

Extends the life of the voice profile. You can use * UpdateVoiceProfile to refresh an existing voice profile's voice * print and extend the life of the summary.

*/ inline void SetExpirationTimestamp(const Aws::Utils::DateTime& value) { m_expirationTimestampHasBeenSet = true; m_expirationTimestamp = value; } /** *

Extends the life of the voice profile. You can use * UpdateVoiceProfile to refresh an existing voice profile's voice * print and extend the life of the summary.

*/ inline void SetExpirationTimestamp(Aws::Utils::DateTime&& value) { m_expirationTimestampHasBeenSet = true; m_expirationTimestamp = std::move(value); } /** *

Extends the life of the voice profile. You can use * UpdateVoiceProfile to refresh an existing voice profile's voice * print and extend the life of the summary.

*/ inline VoiceProfileSummary& WithExpirationTimestamp(const Aws::Utils::DateTime& value) { SetExpirationTimestamp(value); return *this;} /** *

Extends the life of the voice profile. You can use * UpdateVoiceProfile to refresh an existing voice profile's voice * print and extend the life of the summary.

*/ inline VoiceProfileSummary& WithExpirationTimestamp(Aws::Utils::DateTime&& value) { SetExpirationTimestamp(std::move(value)); return *this;} private: Aws::String m_voiceProfileId; bool m_voiceProfileIdHasBeenSet = false; Aws::String m_voiceProfileArn; bool m_voiceProfileArnHasBeenSet = false; Aws::String m_voiceProfileDomainId; bool m_voiceProfileDomainIdHasBeenSet = false; Aws::Utils::DateTime m_createdTimestamp; bool m_createdTimestampHasBeenSet = false; Aws::Utils::DateTime m_updatedTimestamp; bool m_updatedTimestampHasBeenSet = false; Aws::Utils::DateTime m_expirationTimestamp; bool m_expirationTimestampHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws