#[non_exhaustive]pub struct CreateEdgeDeploymentPlanInput {
pub edge_deployment_plan_name: Option<String>,
pub model_configs: Option<Vec<EdgeDeploymentModelConfig>>,
pub device_fleet_name: Option<String>,
pub stages: Option<Vec<DeploymentStage>>,
pub tags: Option<Vec<Tag>>,
}
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.edge_deployment_plan_name: Option<String>
The name of the edge deployment plan.
model_configs: Option<Vec<EdgeDeploymentModelConfig>>
List of models associated with the edge deployment plan.
device_fleet_name: Option<String>
The device fleet used for this edge deployment plan.
stages: Option<Vec<DeploymentStage>>
List of stages of the edge deployment plan. The number of stages is limited to 10 per deployment.
List of tags with which to tag the edge deployment plan.
Implementations
sourceimpl CreateEdgeDeploymentPlanInput
impl CreateEdgeDeploymentPlanInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEdgeDeploymentPlan, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEdgeDeploymentPlan, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateEdgeDeploymentPlan
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateEdgeDeploymentPlanInput
.
sourceimpl CreateEdgeDeploymentPlanInput
impl CreateEdgeDeploymentPlanInput
sourcepub fn edge_deployment_plan_name(&self) -> Option<&str>
pub fn edge_deployment_plan_name(&self) -> Option<&str>
The name of the edge deployment plan.
sourcepub fn model_configs(&self) -> Option<&[EdgeDeploymentModelConfig]>
pub fn model_configs(&self) -> Option<&[EdgeDeploymentModelConfig]>
List of models associated with the edge deployment plan.
sourcepub fn device_fleet_name(&self) -> Option<&str>
pub fn device_fleet_name(&self) -> Option<&str>
The device fleet used for this edge deployment plan.
sourcepub fn stages(&self) -> Option<&[DeploymentStage]>
pub fn stages(&self) -> Option<&[DeploymentStage]>
List of stages of the edge deployment plan. The number of stages is limited to 10 per deployment.
List of tags with which to tag the edge deployment plan.
Trait Implementations
sourceimpl Clone for CreateEdgeDeploymentPlanInput
impl Clone for CreateEdgeDeploymentPlanInput
sourcefn clone(&self) -> CreateEdgeDeploymentPlanInput
fn clone(&self) -> CreateEdgeDeploymentPlanInput
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 CreateEdgeDeploymentPlanInput
impl Debug for CreateEdgeDeploymentPlanInput
sourceimpl PartialEq<CreateEdgeDeploymentPlanInput> for CreateEdgeDeploymentPlanInput
impl PartialEq<CreateEdgeDeploymentPlanInput> for CreateEdgeDeploymentPlanInput
sourcefn eq(&self, other: &CreateEdgeDeploymentPlanInput) -> bool
fn eq(&self, other: &CreateEdgeDeploymentPlanInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateEdgeDeploymentPlanInput) -> bool
fn ne(&self, other: &CreateEdgeDeploymentPlanInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateEdgeDeploymentPlanInput
Auto Trait Implementations
impl RefUnwindSafe for CreateEdgeDeploymentPlanInput
impl Send for CreateEdgeDeploymentPlanInput
impl Sync for CreateEdgeDeploymentPlanInput
impl Unpin for CreateEdgeDeploymentPlanInput
impl UnwindSafe for CreateEdgeDeploymentPlanInput
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