Struct aws_sdk_sagemaker::input::AddAssociationInput [−][src]
#[non_exhaustive]pub struct AddAssociationInput {
pub source_arn: Option<String>,
pub destination_arn: Option<String>,
pub association_type: Option<AssociationEdgeType>,
}
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.source_arn: Option<String>
The ARN of the source.
destination_arn: Option<String>
The Amazon Resource Name (ARN) of the destination.
association_type: Option<AssociationEdgeType>
The type of association. The following are suggested uses for each type. Amazon SageMaker places no restrictions on their use.
-
ContributedTo - The source contributed to the destination or had a part in enabling the destination. For example, the training data contributed to the training job.
-
AssociatedWith - The source is connected to the destination. For example, an approval workflow is associated with a model deployment.
-
DerivedFrom - The destination is a modification of the source. For example, a digest output of a channel input for a processing job is derived from the original inputs.
-
Produced - The source generated the destination. For example, a training job produced a model artifact.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddAssociation, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddAssociation, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AddAssociation
>
Creates a new builder-style object to manufacture AddAssociationInput
The ARN of the source.
The Amazon Resource Name (ARN) of the destination.
The type of association. The following are suggested uses for each type. Amazon SageMaker places no restrictions on their use.
-
ContributedTo - The source contributed to the destination or had a part in enabling the destination. For example, the training data contributed to the training job.
-
AssociatedWith - The source is connected to the destination. For example, an approval workflow is associated with a model deployment.
-
DerivedFrom - The destination is a modification of the source. For example, a digest output of a channel input for a processing job is derived from the original inputs.
-
Produced - The source generated the destination. For example, a training job produced a model artifact.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AddAssociationInput
impl Send for AddAssociationInput
impl Sync for AddAssociationInput
impl Unpin for AddAssociationInput
impl UnwindSafe for AddAssociationInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more