#[non_exhaustive]pub struct SystemInstanceDescription {
pub summary: Option<SystemInstanceSummary>,
pub definition: Option<DefinitionDocument>,
pub s3_bucket_name: Option<String>,
pub metrics_configuration: Option<MetricsConfiguration>,
pub validated_namespace_version: Option<i64>,
pub validated_dependency_revisions: Option<Vec<DependencyRevision>>,
pub flow_actions_role_arn: Option<String>,
}Expand description
An object that contains a system instance definition and summary information.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.summary: Option<SystemInstanceSummary>An object that contains summary information about a system instance.
definition: Option<DefinitionDocument>A document that defines an entity.
s3_bucket_name: Option<String>The Amazon Simple Storage Service bucket where information about a system instance is stored.
metrics_configuration: Option<MetricsConfiguration>An object that specifies whether cloud metrics are collected in a deployment and, if so, what role is used to collect metrics.
validated_namespace_version: Option<i64>The version of the user's namespace against which the system instance was validated.
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.
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.
Implementations
sourceimpl SystemInstanceDescription
impl SystemInstanceDescription
sourcepub fn summary(&self) -> Option<&SystemInstanceSummary>
pub fn summary(&self) -> Option<&SystemInstanceSummary>
An object that contains summary information about a system instance.
sourcepub fn definition(&self) -> Option<&DefinitionDocument>
pub fn definition(&self) -> Option<&DefinitionDocument>
A document that defines an entity.
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
The Amazon Simple Storage Service bucket where information about a system instance is stored.
sourcepub fn metrics_configuration(&self) -> Option<&MetricsConfiguration>
pub fn metrics_configuration(&self) -> Option<&MetricsConfiguration>
An object that specifies whether cloud metrics are collected in a deployment and, if so, what role is used to collect metrics.
sourcepub fn validated_namespace_version(&self) -> Option<i64>
pub fn validated_namespace_version(&self) -> Option<i64>
The version of the user's namespace against which the system instance was validated.
sourcepub fn validated_dependency_revisions(&self) -> Option<&[DependencyRevision]>
pub fn validated_dependency_revisions(&self) -> Option<&[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.
sourcepub fn flow_actions_role_arn(&self) -> Option<&str>
pub fn flow_actions_role_arn(&self) -> Option<&str>
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.
sourceimpl SystemInstanceDescription
impl SystemInstanceDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SystemInstanceDescription.
Trait Implementations
sourceimpl Clone for SystemInstanceDescription
impl Clone for SystemInstanceDescription
sourcefn clone(&self) -> SystemInstanceDescription
fn clone(&self) -> SystemInstanceDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SystemInstanceDescription
impl Debug for SystemInstanceDescription
sourceimpl PartialEq<SystemInstanceDescription> for SystemInstanceDescription
impl PartialEq<SystemInstanceDescription> for SystemInstanceDescription
sourcefn eq(&self, other: &SystemInstanceDescription) -> bool
fn eq(&self, other: &SystemInstanceDescription) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SystemInstanceDescription) -> bool
fn ne(&self, other: &SystemInstanceDescription) -> bool
This method tests for !=.
impl StructuralPartialEq for SystemInstanceDescription
Auto Trait Implementations
impl RefUnwindSafe for SystemInstanceDescription
impl Send for SystemInstanceDescription
impl Sync for SystemInstanceDescription
impl Unpin for SystemInstanceDescription
impl UnwindSafe for SystemInstanceDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more