[][src]Struct rusoto_iotthingsgraph::CreateSystemInstanceRequest

pub struct CreateSystemInstanceRequest {
    pub definition: DefinitionDocument,
    pub flow_actions_role_arn: Option<String>,
    pub greengrass_group_name: Option<String>,
    pub metrics_configuration: Option<MetricsConfiguration>,
    pub s_3_bucket_name: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub target: String,
}

Fields

definition: DefinitionDocumentflow_actions_role_arn: Option<String>

The ARN of the IAM role that AWS IoT Things Graph will assume when it executes the flow. This role must have read and write access to AWS Lambda and AWS IoT and any other AWS services that the flow uses when it executes. This value is required if the value of the target parameter is CLOUD.

greengrass_group_name: Option<String>

The name of the Greengrass group where the system instance will be deployed. This value is required if the value of the target parameter is GREENGRASS.

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

The name of the Amazon Simple Storage Service bucket that will be used to store and deploy the system instance's resource file. This value is required if the value of the target parameter is GREENGRASS.

tags: Option<Vec<Tag>>

Metadata, consisting of key-value pairs, that can be used to categorize your system instances.

target: String

The target type of the deployment. Valid values are GREENGRASS and CLOUD.

Trait Implementations

impl Clone for CreateSystemInstanceRequest[src]

impl Debug for CreateSystemInstanceRequest[src]

impl Default for CreateSystemInstanceRequest[src]

impl PartialEq<CreateSystemInstanceRequest> for CreateSystemInstanceRequest[src]

impl Serialize for CreateSystemInstanceRequest[src]

impl StructuralPartialEq for CreateSystemInstanceRequest[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> 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.