[][src]Struct rusoto_iotthingsgraph::UploadEntityDefinitionsRequest

pub struct UploadEntityDefinitionsRequest {
    pub deprecate_existing_entities: Option<bool>,
    pub document: Option<DefinitionDocument>,
    pub sync_with_public_namespace: Option<bool>,
}

Fields

deprecate_existing_entities: Option<bool>

A Boolean that specifies whether to deprecate all entities in the latest version before uploading the new DefinitionDocument. If set to true, the upload will create a new namespace version.

document: Option<DefinitionDocument>

The DefinitionDocument that defines the updated entities.

sync_with_public_namespace: Option<bool>

A Boolean that specifies whether to synchronize with the latest version of the public namespace. If set to true, the upload will create a new namespace version.

Trait Implementations

impl Clone for UploadEntityDefinitionsRequest[src]

impl Debug for UploadEntityDefinitionsRequest[src]

impl Default for UploadEntityDefinitionsRequest[src]

impl PartialEq<UploadEntityDefinitionsRequest> for UploadEntityDefinitionsRequest[src]

impl Serialize for UploadEntityDefinitionsRequest[src]

impl StructuralPartialEq for UploadEntityDefinitionsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.