#[non_exhaustive]pub struct CreateSystemInstanceInput { /* private fields */ }
Implementations
sourceimpl CreateSystemInstanceInput
impl CreateSystemInstanceInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSystemInstance, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSystemInstance, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSystemInstance
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSystemInstanceInput
.
sourceimpl CreateSystemInstanceInput
impl CreateSystemInstanceInput
Metadata, consisting of key-value pairs, that can be used to categorize your system instances.
sourcepub fn definition(&self) -> Option<&DefinitionDocument>
pub fn definition(&self) -> Option<&DefinitionDocument>
A document that defines an entity.
sourcepub fn target(&self) -> Option<&DeploymentTarget>
pub fn target(&self) -> Option<&DeploymentTarget>
The target type of the deployment. Valid values are GREENGRASS
and CLOUD
.
sourcepub fn greengrass_group_name(&self) -> Option<&str>
pub fn greengrass_group_name(&self) -> Option<&str>
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
.
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
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
.
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 flow_actions_role_arn(&self) -> Option<&str>
pub fn flow_actions_role_arn(&self) -> Option<&str>
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
.
Trait Implementations
sourceimpl Clone for CreateSystemInstanceInput
impl Clone for CreateSystemInstanceInput
sourcefn clone(&self) -> CreateSystemInstanceInput
fn clone(&self) -> CreateSystemInstanceInput
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 CreateSystemInstanceInput
impl Debug for CreateSystemInstanceInput
sourceimpl PartialEq<CreateSystemInstanceInput> for CreateSystemInstanceInput
impl PartialEq<CreateSystemInstanceInput> for CreateSystemInstanceInput
sourcefn eq(&self, other: &CreateSystemInstanceInput) -> bool
fn eq(&self, other: &CreateSystemInstanceInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for CreateSystemInstanceInput
Auto Trait Implementations
impl RefUnwindSafe for CreateSystemInstanceInput
impl Send for CreateSystemInstanceInput
impl Sync for CreateSystemInstanceInput
impl Unpin for CreateSystemInstanceInput
impl UnwindSafe for CreateSystemInstanceInput
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