Struct aws_sdk_sagemaker::operation::create_edge_deployment_plan::CreateEdgeDeploymentPlanInput
source · #[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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§
source§impl 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.
source§impl CreateEdgeDeploymentPlanInput
impl CreateEdgeDeploymentPlanInput
sourcepub fn builder() -> CreateEdgeDeploymentPlanInputBuilder
pub fn builder() -> CreateEdgeDeploymentPlanInputBuilder
Creates a new builder-style object to manufacture CreateEdgeDeploymentPlanInput
.
Trait Implementations§
source§impl Clone for CreateEdgeDeploymentPlanInput
impl Clone for CreateEdgeDeploymentPlanInput
source§fn clone(&self) -> CreateEdgeDeploymentPlanInput
fn clone(&self) -> CreateEdgeDeploymentPlanInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<CreateEdgeDeploymentPlanInput> for CreateEdgeDeploymentPlanInput
impl PartialEq<CreateEdgeDeploymentPlanInput> for CreateEdgeDeploymentPlanInput
source§fn 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 ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more