598 lines
21 KiB
C++
598 lines
21 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/pinpoint/Pinpoint_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Pinpoint
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Provides information about the status and settings of the SMS channel for an
|
|
* application.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/SMSChannelResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_PINPOINT_API SMSChannelResponse
|
|
{
|
|
public:
|
|
SMSChannelResponse();
|
|
SMSChannelResponse(Aws::Utils::Json::JsonView jsonValue);
|
|
SMSChannelResponse& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the application that the SMS channel applies
|
|
* to.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline const Aws::String& GetCreationDate() const{ return m_creationDate; }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline bool CreationDateHasBeenSet() const { return m_creationDateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline void SetCreationDate(const Aws::String& value) { m_creationDateHasBeenSet = true; m_creationDate = value; }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline void SetCreationDate(Aws::String&& value) { m_creationDateHasBeenSet = true; m_creationDate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline void SetCreationDate(const char* value) { m_creationDateHasBeenSet = true; m_creationDate.assign(value); }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithCreationDate(const Aws::String& value) { SetCreationDate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithCreationDate(Aws::String&& value) { SetCreationDate(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was enabled.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithCreationDate(const char* value) { SetCreationDate(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is enabled for the application.</p>
|
|
*/
|
|
inline bool GetEnabled() const{ return m_enabled; }
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is enabled for the application.</p>
|
|
*/
|
|
inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is enabled for the application.</p>
|
|
*/
|
|
inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is enabled for the application.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithEnabled(bool value) { SetEnabled(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>(Not used) This property is retained only for backward compatibility.</p>
|
|
*/
|
|
inline bool GetHasCredential() const{ return m_hasCredential; }
|
|
|
|
/**
|
|
* <p>(Not used) This property is retained only for backward compatibility.</p>
|
|
*/
|
|
inline bool HasCredentialHasBeenSet() const { return m_hasCredentialHasBeenSet; }
|
|
|
|
/**
|
|
* <p>(Not used) This property is retained only for backward compatibility.</p>
|
|
*/
|
|
inline void SetHasCredential(bool value) { m_hasCredentialHasBeenSet = true; m_hasCredential = value; }
|
|
|
|
/**
|
|
* <p>(Not used) This property is retained only for backward compatibility.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithHasCredential(bool value) { SetHasCredential(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline const Aws::String& GetId() const{ return m_id; }
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithId(const Aws::String& value) { SetId(value); return *this;}
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>(Deprecated) An identifier for the SMS channel. This property is retained
|
|
* only for backward compatibility.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithId(const char* value) { SetId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is archived.</p>
|
|
*/
|
|
inline bool GetIsArchived() const{ return m_isArchived; }
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is archived.</p>
|
|
*/
|
|
inline bool IsArchivedHasBeenSet() const { return m_isArchivedHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is archived.</p>
|
|
*/
|
|
inline void SetIsArchived(bool value) { m_isArchivedHasBeenSet = true; m_isArchived = value; }
|
|
|
|
/**
|
|
* <p>Specifies whether the SMS channel is archived.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithIsArchived(bool value) { SetIsArchived(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline const Aws::String& GetLastModifiedBy() const{ return m_lastModifiedBy; }
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline bool LastModifiedByHasBeenSet() const { return m_lastModifiedByHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline void SetLastModifiedBy(const Aws::String& value) { m_lastModifiedByHasBeenSet = true; m_lastModifiedBy = value; }
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline void SetLastModifiedBy(Aws::String&& value) { m_lastModifiedByHasBeenSet = true; m_lastModifiedBy = std::move(value); }
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline void SetLastModifiedBy(const char* value) { m_lastModifiedByHasBeenSet = true; m_lastModifiedBy.assign(value); }
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithLastModifiedBy(const Aws::String& value) { SetLastModifiedBy(value); return *this;}
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithLastModifiedBy(Aws::String&& value) { SetLastModifiedBy(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The user who last modified the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithLastModifiedBy(const char* value) { SetLastModifiedBy(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline const Aws::String& GetLastModifiedDate() const{ return m_lastModifiedDate; }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline bool LastModifiedDateHasBeenSet() const { return m_lastModifiedDateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline void SetLastModifiedDate(const Aws::String& value) { m_lastModifiedDateHasBeenSet = true; m_lastModifiedDate = value; }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline void SetLastModifiedDate(Aws::String&& value) { m_lastModifiedDateHasBeenSet = true; m_lastModifiedDate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline void SetLastModifiedDate(const char* value) { m_lastModifiedDateHasBeenSet = true; m_lastModifiedDate.assign(value); }
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithLastModifiedDate(const Aws::String& value) { SetLastModifiedDate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithLastModifiedDate(Aws::String&& value) { SetLastModifiedDate(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time, in ISO 8601 format, when the SMS channel was last
|
|
* modified.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithLastModifiedDate(const char* value) { SetLastModifiedDate(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline const Aws::String& GetPlatform() const{ return m_platform; }
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline void SetPlatform(const Aws::String& value) { m_platformHasBeenSet = true; m_platform = value; }
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline void SetPlatform(Aws::String&& value) { m_platformHasBeenSet = true; m_platform = std::move(value); }
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline void SetPlatform(const char* value) { m_platformHasBeenSet = true; m_platform.assign(value); }
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithPlatform(const Aws::String& value) { SetPlatform(value); return *this;}
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithPlatform(Aws::String&& value) { SetPlatform(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The type of messaging or notification platform for the channel. For the SMS
|
|
* channel, this value is SMS.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithPlatform(const char* value) { SetPlatform(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of promotional messages that you can send through the SMS
|
|
* channel each second.</p>
|
|
*/
|
|
inline int GetPromotionalMessagesPerSecond() const{ return m_promotionalMessagesPerSecond; }
|
|
|
|
/**
|
|
* <p>The maximum number of promotional messages that you can send through the SMS
|
|
* channel each second.</p>
|
|
*/
|
|
inline bool PromotionalMessagesPerSecondHasBeenSet() const { return m_promotionalMessagesPerSecondHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of promotional messages that you can send through the SMS
|
|
* channel each second.</p>
|
|
*/
|
|
inline void SetPromotionalMessagesPerSecond(int value) { m_promotionalMessagesPerSecondHasBeenSet = true; m_promotionalMessagesPerSecond = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of promotional messages that you can send through the SMS
|
|
* channel each second.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithPromotionalMessagesPerSecond(int value) { SetPromotionalMessagesPerSecond(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline const Aws::String& GetSenderId() const{ return m_senderId; }
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline bool SenderIdHasBeenSet() const { return m_senderIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline void SetSenderId(const Aws::String& value) { m_senderIdHasBeenSet = true; m_senderId = value; }
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline void SetSenderId(Aws::String&& value) { m_senderIdHasBeenSet = true; m_senderId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline void SetSenderId(const char* value) { m_senderIdHasBeenSet = true; m_senderId.assign(value); }
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithSenderId(const Aws::String& value) { SetSenderId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithSenderId(Aws::String&& value) { SetSenderId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identity that displays on recipients' devices when they receive messages
|
|
* from the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithSenderId(const char* value) { SetSenderId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline const Aws::String& GetShortCode() const{ return m_shortCode; }
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline bool ShortCodeHasBeenSet() const { return m_shortCodeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline void SetShortCode(const Aws::String& value) { m_shortCodeHasBeenSet = true; m_shortCode = value; }
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline void SetShortCode(Aws::String&& value) { m_shortCodeHasBeenSet = true; m_shortCode = std::move(value); }
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline void SetShortCode(const char* value) { m_shortCodeHasBeenSet = true; m_shortCode.assign(value); }
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithShortCode(const Aws::String& value) { SetShortCode(value); return *this;}
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithShortCode(Aws::String&& value) { SetShortCode(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The registered short code to use when you send messages through the SMS
|
|
* channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithShortCode(const char* value) { SetShortCode(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of transactional messages that you can send through the
|
|
* SMS channel each second.</p>
|
|
*/
|
|
inline int GetTransactionalMessagesPerSecond() const{ return m_transactionalMessagesPerSecond; }
|
|
|
|
/**
|
|
* <p>The maximum number of transactional messages that you can send through the
|
|
* SMS channel each second.</p>
|
|
*/
|
|
inline bool TransactionalMessagesPerSecondHasBeenSet() const { return m_transactionalMessagesPerSecondHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of transactional messages that you can send through the
|
|
* SMS channel each second.</p>
|
|
*/
|
|
inline void SetTransactionalMessagesPerSecond(int value) { m_transactionalMessagesPerSecondHasBeenSet = true; m_transactionalMessagesPerSecond = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of transactional messages that you can send through the
|
|
* SMS channel each second.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithTransactionalMessagesPerSecond(int value) { SetTransactionalMessagesPerSecond(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The current version of the SMS channel.</p>
|
|
*/
|
|
inline int GetVersion() const{ return m_version; }
|
|
|
|
/**
|
|
* <p>The current version of the SMS channel.</p>
|
|
*/
|
|
inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The current version of the SMS channel.</p>
|
|
*/
|
|
inline void SetVersion(int value) { m_versionHasBeenSet = true; m_version = value; }
|
|
|
|
/**
|
|
* <p>The current version of the SMS channel.</p>
|
|
*/
|
|
inline SMSChannelResponse& WithVersion(int value) { SetVersion(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_applicationId;
|
|
bool m_applicationIdHasBeenSet;
|
|
|
|
Aws::String m_creationDate;
|
|
bool m_creationDateHasBeenSet;
|
|
|
|
bool m_enabled;
|
|
bool m_enabledHasBeenSet;
|
|
|
|
bool m_hasCredential;
|
|
bool m_hasCredentialHasBeenSet;
|
|
|
|
Aws::String m_id;
|
|
bool m_idHasBeenSet;
|
|
|
|
bool m_isArchived;
|
|
bool m_isArchivedHasBeenSet;
|
|
|
|
Aws::String m_lastModifiedBy;
|
|
bool m_lastModifiedByHasBeenSet;
|
|
|
|
Aws::String m_lastModifiedDate;
|
|
bool m_lastModifiedDateHasBeenSet;
|
|
|
|
Aws::String m_platform;
|
|
bool m_platformHasBeenSet;
|
|
|
|
int m_promotionalMessagesPerSecond;
|
|
bool m_promotionalMessagesPerSecondHasBeenSet;
|
|
|
|
Aws::String m_senderId;
|
|
bool m_senderIdHasBeenSet;
|
|
|
|
Aws::String m_shortCode;
|
|
bool m_shortCodeHasBeenSet;
|
|
|
|
int m_transactionalMessagesPerSecond;
|
|
bool m_transactionalMessagesPerSecondHasBeenSet;
|
|
|
|
int m_version;
|
|
bool m_versionHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Pinpoint
|
|
} // namespace Aws
|