[][src]Struct rusoto_iotthingsgraph::SystemInstanceDescription

pub struct SystemInstanceDescription {
    pub definition: Option<DefinitionDocument>,
    pub flow_actions_role_arn: Option<String>,
    pub metrics_configuration: Option<MetricsConfiguration>,
    pub s_3_bucket_name: Option<String>,
    pub summary: Option<SystemInstanceSummary>,
    pub validated_dependency_revisions: Option<Vec<DependencyRevision>>,
    pub validated_namespace_version: Option<i64>,
}

An object that contains a system instance definition and summary information.

Fields

definition: Option<DefinitionDocument>flow_actions_role_arn: Option<String>

The AWS Identity and Access Management (IAM) role that AWS IoT Things Graph assumes during flow execution in a cloud deployment. This role must have read and write permissionss to AWS Lambda and AWS IoT and to any other AWS services that the flow uses.

metrics_configuration: Option<MetricsConfiguration>s_3_bucket_name: Option<String>

The Amazon Simple Storage Service bucket where information about a system instance is stored.

summary: Option<SystemInstanceSummary>

An object that contains summary information about a system instance.

validated_dependency_revisions: Option<Vec<DependencyRevision>>

A list of objects that contain all of the IDs and revision numbers of workflows and systems that are used in a system instance.

validated_namespace_version: Option<i64>

The version of the user's namespace against which the system instance was validated.

Trait Implementations

impl Clone for SystemInstanceDescription[src]

impl Debug for SystemInstanceDescription[src]

impl Default for SystemInstanceDescription[src]

impl<'de> Deserialize<'de> for SystemInstanceDescription[src]

impl PartialEq<SystemInstanceDescription> for SystemInstanceDescription[src]

impl StructuralPartialEq for SystemInstanceDescription[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.