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
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) -> &[EdgeDeploymentModelConfig]
pub fn model_configs(&self) -> &[EdgeDeploymentModelConfig]
List of models associated with the edge deployment plan.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .model_configs.is_none()
.
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) -> &[DeploymentStage]
pub fn stages(&self) -> &[DeploymentStage]
List of stages of the edge deployment plan. The number of stages is limited to 10 per deployment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .stages.is_none()
.
List of tags with which to tag the edge deployment plan.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateEdgeDeploymentPlanInput
impl PartialEq for CreateEdgeDeploymentPlanInput
source§fn eq(&self, other: &CreateEdgeDeploymentPlanInput) -> bool
fn eq(&self, other: &CreateEdgeDeploymentPlanInput) -> bool
self
and other
values to be equal, and is used
by ==
.