Struct aws_sdk_sagemaker::model::EdgeOutputConfig
source · [−]#[non_exhaustive]pub struct EdgeOutputConfig { /* private fields */ }
Expand description
The output configuration.
Implementations
sourceimpl EdgeOutputConfig
impl EdgeOutputConfig
sourcepub fn s3_output_location(&self) -> Option<&str>
pub fn s3_output_location(&self) -> Option<&str>
The Amazon Simple Storage (S3) bucker URI.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account.
sourcepub fn preset_deployment_type(&self) -> Option<&EdgePresetDeploymentType>
pub fn preset_deployment_type(&self) -> Option<&EdgePresetDeploymentType>
The deployment type SageMaker Edge Manager will create. Currently only supports Amazon Web Services IoT Greengrass Version 2 components.
sourcepub fn preset_deployment_config(&self) -> Option<&str>
pub fn preset_deployment_config(&self) -> Option<&str>
The configuration used to create deployment artifacts. Specify configuration options with a JSON string. The available configuration options for each type are:
-
ComponentName
(optional) - Name of the GreenGrass V2 component. If not specified, the default name generated consists of "SagemakerEdgeManager" and the name of your SageMaker Edge Manager packaging job. -
ComponentDescription
(optional) - Description of the component. -
ComponentVersion
(optional) - The version of the component.Amazon Web Services IoT Greengrass uses semantic versions for components. Semantic versions follow a major.minor.patch number system. For example, version 1.0.0 represents the first major release for a component. For more information, see the semantic version specification.
-
PlatformOS
(optional) - The name of the operating system for the platform. Supported platforms include Windows and Linux. -
PlatformArchitecture
(optional) - The processor architecture for the platform.Supported architectures Windows include: Windows32_x86, Windows64_x64.
Supported architectures for Linux include: Linux x86_64, Linux ARMV8.
sourceimpl EdgeOutputConfig
impl EdgeOutputConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EdgeOutputConfig
.
Trait Implementations
sourceimpl Clone for EdgeOutputConfig
impl Clone for EdgeOutputConfig
sourcefn clone(&self) -> EdgeOutputConfig
fn clone(&self) -> EdgeOutputConfig
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 EdgeOutputConfig
impl Debug for EdgeOutputConfig
sourceimpl PartialEq<EdgeOutputConfig> for EdgeOutputConfig
impl PartialEq<EdgeOutputConfig> for EdgeOutputConfig
sourcefn eq(&self, other: &EdgeOutputConfig) -> bool
fn eq(&self, other: &EdgeOutputConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for EdgeOutputConfig
Auto Trait Implementations
impl RefUnwindSafe for EdgeOutputConfig
impl Send for EdgeOutputConfig
impl Sync for EdgeOutputConfig
impl Unpin for EdgeOutputConfig
impl UnwindSafe for EdgeOutputConfig
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