pub struct CreatePlatformApplicationInput {
pub attributes: HashMap<String, String>,
pub name: String,
pub platform: String,
}Expand description
Input for CreatePlatformApplication action.
Fields§
§attributes: HashMap<String, String>For a list of attributes, see SetPlatformApplicationAttributes
name: StringApplication names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, hyphens, and periods, and must be between 1 and 256 characters long.
platform: StringThe following platforms are supported: ADM (Amazon Device Messaging), APNS (Apple Push Notification Service), APNS_SANDBOX, and GCM (Firebase Cloud Messaging).
Trait Implementations§
Source§impl Clone for CreatePlatformApplicationInput
impl Clone for CreatePlatformApplicationInput
Source§fn clone(&self) -> CreatePlatformApplicationInput
fn clone(&self) -> CreatePlatformApplicationInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreatePlatformApplicationInput
impl Default for CreatePlatformApplicationInput
Source§fn default() -> CreatePlatformApplicationInput
fn default() -> CreatePlatformApplicationInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreatePlatformApplicationInput
impl PartialEq for CreatePlatformApplicationInput
Source§fn eq(&self, other: &CreatePlatformApplicationInput) -> bool
fn eq(&self, other: &CreatePlatformApplicationInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreatePlatformApplicationInput
Auto Trait Implementations§
impl Freeze for CreatePlatformApplicationInput
impl RefUnwindSafe for CreatePlatformApplicationInput
impl Send for CreatePlatformApplicationInput
impl Sync for CreatePlatformApplicationInput
impl Unpin for CreatePlatformApplicationInput
impl UnwindSafe for CreatePlatformApplicationInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more