Struct Client

Source
pub struct Client { /* private fields */ }
Expand description

Client for Amazon SageMaker Service

Client for invoking operations on Amazon SageMaker Service. Each operation on Amazon SageMaker Service is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

§Constructing a Client

A Config is required to construct a client. For most use cases, the aws-config crate should be used to automatically resolve this config using aws_config::load_from_env(), since this will resolve an SdkConfig which can be shared across multiple different AWS SDK clients. This config resolution process can be customized by calling aws_config::from_env() instead, which returns a ConfigLoader that uses the builder pattern to customize the default config.

In the simplest case, creating a client looks as follows:

let config = aws_config::load_from_env().await;
let client = aws_sdk_sagemaker::Client::new(&config);

Occasionally, SDKs may have additional service-specific values that can be set on the Config that is absent from SdkConfig, or slightly different settings for a specific client may be desired. The Builder struct implements From<&SdkConfig>, so setting these specific settings can be done as follows:

let sdk_config = ::aws_config::load_from_env().await;
let config = aws_sdk_sagemaker::config::Builder::from(&sdk_config)
    .some_service_specific_setting("value")
    .build();

See the aws-config docs and Config for more information on customizing configuration.

Note: Client construction is expensive due to connection thread pool initialization, and should be done once at application start-up.

§Using the Client

A client has a function for every operation that can be performed by the service. For example, the AddAssociation operation has a Client::add_association, function which returns a builder for that operation. The fluent builder ultimately has a send() function that returns an async future that returns a result, as illustrated below:

let result = client.add_association()
    .source_arn("example")
    .send()
    .await;

The underlying HTTP requests that get made by this can be modified with the customize_operation function on the fluent builder. See the customize module for more information.

§Waiters

This client provides wait_until methods behind the Waiters trait. To use them, simply import the trait, and then call one of the wait_until methods. This will return a waiter fluent builder that takes various parameters, which are documented on the builder type. Once parameters have been provided, the wait method can be called to initiate waiting.

For example, if there was a wait_until_thing method, it could look like:

let result = client.wait_until_thing()
    .thing_id("someId")
    .wait(Duration::from_secs(120))
    .await;

Implementations§

Source§

impl Client

Source

pub fn add_association(&self) -> AddAssociationFluentBuilder

Constructs a fluent builder for the AddAssociation operation.

Source§

impl Client

Source

pub fn add_tags(&self) -> AddTagsFluentBuilder

Constructs a fluent builder for the AddTags operation.

Source§

impl Client

Source

pub fn associate_trial_component(&self) -> AssociateTrialComponentFluentBuilder

Constructs a fluent builder for the AssociateTrialComponent operation.

Source§

impl Client

Source

pub fn batch_delete_cluster_nodes(&self) -> BatchDeleteClusterNodesFluentBuilder

Constructs a fluent builder for the BatchDeleteClusterNodes operation.

Source§

impl Client

Source

pub fn batch_describe_model_package( &self, ) -> BatchDescribeModelPackageFluentBuilder

Constructs a fluent builder for the BatchDescribeModelPackage operation.

Source§

impl Client

Source

pub fn create_action(&self) -> CreateActionFluentBuilder

Constructs a fluent builder for the CreateAction operation.

Source§

impl Client

Source

pub fn create_algorithm(&self) -> CreateAlgorithmFluentBuilder

Constructs a fluent builder for the CreateAlgorithm operation.

Source§

impl Client

Source

pub fn create_app(&self) -> CreateAppFluentBuilder

Constructs a fluent builder for the CreateApp operation.

Source§

impl Client

Source

pub fn create_app_image_config(&self) -> CreateAppImageConfigFluentBuilder

Constructs a fluent builder for the CreateAppImageConfig operation.

Source§

impl Client

Source

pub fn create_artifact(&self) -> CreateArtifactFluentBuilder

Constructs a fluent builder for the CreateArtifact operation.

Source§

impl Client

Source

pub fn create_auto_ml_job(&self) -> CreateAutoMLJobFluentBuilder

Constructs a fluent builder for the CreateAutoMLJob operation.

Source§

impl Client

Source

pub fn create_auto_ml_job_v2(&self) -> CreateAutoMLJobV2FluentBuilder

Constructs a fluent builder for the CreateAutoMLJobV2 operation.

Source§

impl Client

Source

pub fn create_cluster(&self) -> CreateClusterFluentBuilder

Constructs a fluent builder for the CreateCluster operation.

Source§

impl Client

Source

pub fn create_cluster_scheduler_config( &self, ) -> CreateClusterSchedulerConfigFluentBuilder

Constructs a fluent builder for the CreateClusterSchedulerConfig operation.

Source§

impl Client

Source

pub fn create_code_repository(&self) -> CreateCodeRepositoryFluentBuilder

Constructs a fluent builder for the CreateCodeRepository operation.

Source§

impl Client

Source

pub fn create_compilation_job(&self) -> CreateCompilationJobFluentBuilder

Constructs a fluent builder for the CreateCompilationJob operation.

Source§

impl Client

Source

pub fn create_compute_quota(&self) -> CreateComputeQuotaFluentBuilder

Constructs a fluent builder for the CreateComputeQuota operation.

Source§

impl Client

Source

pub fn create_context(&self) -> CreateContextFluentBuilder

Constructs a fluent builder for the CreateContext operation.

Source§

impl Client

Source

pub fn create_data_quality_job_definition( &self, ) -> CreateDataQualityJobDefinitionFluentBuilder

Constructs a fluent builder for the CreateDataQualityJobDefinition operation.

Source§

impl Client

Source

pub fn create_device_fleet(&self) -> CreateDeviceFleetFluentBuilder

Constructs a fluent builder for the CreateDeviceFleet operation.

Source§

impl Client

Source

pub fn create_domain(&self) -> CreateDomainFluentBuilder

Constructs a fluent builder for the CreateDomain operation.

Source§

impl Client

Source

pub fn create_edge_deployment_plan( &self, ) -> CreateEdgeDeploymentPlanFluentBuilder

Constructs a fluent builder for the CreateEdgeDeploymentPlan operation.

Source§

impl Client

Source

pub fn create_edge_deployment_stage( &self, ) -> CreateEdgeDeploymentStageFluentBuilder

Constructs a fluent builder for the CreateEdgeDeploymentStage operation.

Source§

impl Client

Source

pub fn create_edge_packaging_job(&self) -> CreateEdgePackagingJobFluentBuilder

Constructs a fluent builder for the CreateEdgePackagingJob operation.

Source§

impl Client

Source

pub fn create_endpoint(&self) -> CreateEndpointFluentBuilder

Constructs a fluent builder for the CreateEndpoint operation.

Source§

impl Client

Source

pub fn create_endpoint_config(&self) -> CreateEndpointConfigFluentBuilder

Constructs a fluent builder for the CreateEndpointConfig operation.

Source§

impl Client

Source

pub fn create_experiment(&self) -> CreateExperimentFluentBuilder

Constructs a fluent builder for the CreateExperiment operation.

Source§

impl Client

Source

pub fn create_feature_group(&self) -> CreateFeatureGroupFluentBuilder

Constructs a fluent builder for the CreateFeatureGroup operation.

  • The fluent builder is configurable:
    • feature_group_name(impl Into<String>) / set_feature_group_name(Option<String>):
      required: true

      The name of the FeatureGroup. The name must be unique within an Amazon Web Services Region in an Amazon Web Services account.

      The name:

      • Must start with an alphanumeric character.

      • Can only include alphanumeric characters, underscores, and hyphens. Spaces are not allowed.


    • record_identifier_feature_name(impl Into<String>) / set_record_identifier_feature_name(Option<String>):
      required: true

      The name of the Feature whose value uniquely identifies a Record defined in the FeatureStore. Only the latest record per identifier value will be stored in the OnlineStore. RecordIdentifierFeatureName must be one of feature definitions’ names.

      You use the RecordIdentifierFeatureName to access data in a FeatureStore.

      This name:

      • Must start with an alphanumeric character.

      • Can only contains alphanumeric characters, hyphens, underscores. Spaces are not allowed.


    • event_time_feature_name(impl Into<String>) / set_event_time_feature_name(Option<String>):
      required: true

      The name of the feature that stores the EventTime of a Record in a FeatureGroup.

      An EventTime is a point in time when a new event occurs that corresponds to the creation or update of a Record in a FeatureGroup. All Records in the FeatureGroup must have a corresponding EventTime.

      An EventTime can be a String or Fractional.

      • Fractional: EventTime feature values must be a Unix timestamp in seconds.

      • String: EventTime feature values must be an ISO-8601 string in the format. The following formats are supported yyyy-MM-dd’T’HH:mm:ssZ and yyyy-MM-dd’T’HH:mm:ss.SSSZ where yyyy, MM, and dd represent the year, month, and day respectively and HH, mm, ss, and if applicable, SSS represent the hour, month, second and milliseconds respsectively. ‘T’ and Z are constants.


    • feature_definitions(FeatureDefinition) / set_feature_definitions(Option<Vec::<FeatureDefinition>>):
      required: true

      A list of Feature names and types. Name and Type is compulsory per Feature.

      Valid feature FeatureTypes are Integral, Fractional and String.

      FeatureNames cannot be any of the following: is_deleted, write_time, api_invocation_time

      You can create up to 2,500 FeatureDefinitions per FeatureGroup.


    • online_store_config(OnlineStoreConfig) / set_online_store_config(Option<OnlineStoreConfig>):
      required: false

      You can turn the OnlineStore on or off by specifying True for the EnableOnlineStore flag in OnlineStoreConfig.

      You can also include an Amazon Web Services KMS key ID (KMSKeyId) for at-rest encryption of the OnlineStore.

      The default value is False.


    • offline_store_config(OfflineStoreConfig) / set_offline_store_config(Option<OfflineStoreConfig>):
      required: false

      Use this to configure an OfflineFeatureStore. This parameter allows you to specify:

      • The Amazon Simple Storage Service (Amazon S3) location of an OfflineStore.

      • A configuration for an Amazon Web Services Glue or Amazon Web Services Hive data catalog.

      • An KMS encryption key to encrypt the Amazon S3 location used for OfflineStore. If KMS encryption key is not specified, by default we encrypt all data at rest using Amazon Web Services KMS key. By defining your bucket-level key for SSE, you can reduce Amazon Web Services KMS requests costs by up to 99 percent.

      • Format for the offline store table. Supported formats are Glue (Default) and Apache Iceberg.

      To learn more about this parameter, see OfflineStoreConfig.


    • throughput_config(ThroughputConfig) / set_throughput_config(Option<ThroughputConfig>):
      required: false

      Used to set feature group throughput configuration. There are two modes: ON_DEMAND and PROVISIONED. With on-demand mode, you are charged for data reads and writes that your application performs on your feature group. You do not need to specify read and write throughput because Feature Store accommodates your workloads as they ramp up and down. You can switch a feature group to on-demand only once in a 24 hour period. With provisioned throughput mode, you specify the read and write capacity per second that you expect your application to require, and you are billed based on those limits. Exceeding provisioned throughput will result in your requests being throttled.

      Note: PROVISIONED throughput mode is supported only for feature groups that are offline-only, or use the Standard tier online store.


    • role_arn(impl Into<String>) / set_role_arn(Option<String>):
      required: false

      The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the OfflineStore if an OfflineStoreConfig is provided.


    • description(impl Into<String>) / set_description(Option<String>):
      required: false

      A free-form description of a FeatureGroup.


    • tags(Tag) / set_tags(Option<Vec::<Tag>>):
      required: false

      Tags used to identify Features in each FeatureGroup.


  • On success, responds with CreateFeatureGroupOutput with field(s):
  • On failure, responds with SdkError<CreateFeatureGroupError>
Source§

impl Client

Source

pub fn create_flow_definition(&self) -> CreateFlowDefinitionFluentBuilder

Constructs a fluent builder for the CreateFlowDefinition operation.

Source§

impl Client

Source

pub fn create_hub(&self) -> CreateHubFluentBuilder

Constructs a fluent builder for the CreateHub operation.

Source§

impl Client

Source

pub fn create_hub_content_reference( &self, ) -> CreateHubContentReferenceFluentBuilder

Constructs a fluent builder for the CreateHubContentReference operation.

Source§

impl Client

Source

pub fn create_human_task_ui(&self) -> CreateHumanTaskUiFluentBuilder

Constructs a fluent builder for the CreateHumanTaskUi operation.

Source§

impl Client

Source

pub fn create_hyper_parameter_tuning_job( &self, ) -> CreateHyperParameterTuningJobFluentBuilder

Constructs a fluent builder for the CreateHyperParameterTuningJob operation.

Source§

impl Client

Source

pub fn create_image(&self) -> CreateImageFluentBuilder

Constructs a fluent builder for the CreateImage operation.

Source§

impl Client

Source

pub fn create_image_version(&self) -> CreateImageVersionFluentBuilder

Constructs a fluent builder for the CreateImageVersion operation.

Source§

impl Client

Source

pub fn create_inference_component( &self, ) -> CreateInferenceComponentFluentBuilder

Constructs a fluent builder for the CreateInferenceComponent operation.

Source§

impl Client

Source

pub fn create_inference_experiment( &self, ) -> CreateInferenceExperimentFluentBuilder

Constructs a fluent builder for the CreateInferenceExperiment operation.

Source§

impl Client

Source

pub fn create_inference_recommendations_job( &self, ) -> CreateInferenceRecommendationsJobFluentBuilder

Constructs a fluent builder for the CreateInferenceRecommendationsJob operation.

Source§

impl Client

Source

pub fn create_labeling_job(&self) -> CreateLabelingJobFluentBuilder

Constructs a fluent builder for the CreateLabelingJob operation.

  • The fluent builder is configurable:
    • labeling_job_name(impl Into<String>) / set_labeling_job_name(Option<String>):
      required: true

      The name of the labeling job. This name is used to identify the job in a list of labeling jobs. Labeling job names must be unique within an Amazon Web Services account and region. LabelingJobName is not case sensitive. For example, Example-job and example-job are considered the same labeling job name by Ground Truth.


    • label_attribute_name(impl Into<String>) / set_label_attribute_name(Option<String>):
      required: true

      The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The LabelAttributeName must meet the following requirements.

      • The name can’t end with “-metadata”.

      • If you are using one of the following built-in task types, the attribute name must end with “-ref”. If the task type you are using is not listed below, the attribute name must not end with “-ref”.

        • Image semantic segmentation (SemanticSegmentation), and adjustment (AdjustmentSemanticSegmentation) and verification (VerificationSemanticSegmentation) labeling jobs for this task type.

        • Video frame object detection (VideoObjectDetection), and adjustment and verification (AdjustmentVideoObjectDetection) labeling jobs for this task type.

        • Video frame object tracking (VideoObjectTracking), and adjustment and verification (AdjustmentVideoObjectTracking) labeling jobs for this task type.

        • 3D point cloud semantic segmentation (3DPointCloudSemanticSegmentation), and adjustment and verification (Adjustment3DPointCloudSemanticSegmentation) labeling jobs for this task type.

        • 3D point cloud object tracking (3DPointCloudObjectTracking), and adjustment and verification (Adjustment3DPointCloudObjectTracking) labeling jobs for this task type.

      If you are creating an adjustment or verification labeling job, you must use a different LabelAttributeName than the one used in the original labeling job. The original labeling job is the Ground Truth labeling job that produced the labels that you want verified or adjusted. To learn more about adjustment and verification labeling jobs, see Verify and Adjust Labels.


    • input_config(LabelingJobInputConfig) / set_input_config(Option<LabelingJobInputConfig>):
      required: true

      Input data for the labeling job, such as the Amazon S3 location of the data objects and the location of the manifest file that describes the data objects.

      You must specify at least one of the following: S3DataSource or SnsDataSource.

      • Use SnsDataSource to specify an SNS input topic for a streaming labeling job. If you do not specify and SNS input topic ARN, Ground Truth will create a one-time labeling job that stops after all data objects in the input manifest file have been labeled.

      • Use S3DataSource to specify an input manifest file for both streaming and one-time labeling jobs. Adding an S3DataSource is optional if you use SnsDataSource to create a streaming labeling job.

      If you use the Amazon Mechanical Turk workforce, your input data should not include confidential information, personal information or protected health information. Use ContentClassifiers to specify that your data is free of personally identifiable information and adult content.


    • output_config(LabelingJobOutputConfig) / set_output_config(Option<LabelingJobOutputConfig>):
      required: true

      The location of the output data and the Amazon Web Services Key Management Service key ID for the key used to encrypt the output data, if any.


    • role_arn(impl Into<String>) / set_role_arn(Option<String>):
      required: true

      The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data labeling. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete data labeling.


    • label_category_config_s3_uri(impl Into<String>) / set_label_category_config_s3_uri(Option<String>):
      required: false

      The S3 URI of the file, referred to as a label category configuration file, that defines the categories used to label the data objects.

      For 3D point cloud and video frame task types, you can add label category attributes and frame attributes to your label category configuration file. To learn how, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs.

      For named entity recognition jobs, in addition to “labels”, you must provide worker instructions in the label category configuration file using the “instructions” parameter: “instructions”: {“shortInstruction”:“<h1>Add header</h1><p>Add Instructions</p>”, “fullInstruction”:“<p>Add additional instructions.</p>”}. For details and an example, see Create a Named Entity Recognition Labeling Job (API) .

      For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1, label_2,,label_n with your label categories.

      {

      “document-version”: “2018-11-28”,

      “labels”: [{“label”: “label_1”},{“label”: “label_2”},…{“label”: “label_n”}]

      }

      Note the following about the label category configuration file:

      • For image classification and text classification (single and multi-label) you must specify at least two label categories. For all other task types, the minimum number of label categories required is one.

      • Each label category must be unique, you cannot specify duplicate label categories.

      • If you create a 3D point cloud or video frame adjustment or verification labeling job, you must include auditLabelAttributeName in the label category configuration. Use this parameter to enter the LabelAttributeName of the labeling job you want to adjust or verify annotations of.


    • stopping_conditions(LabelingJobStoppingConditions) / set_stopping_conditions(Option<LabelingJobStoppingConditions>):
      required: false

      A set of conditions for stopping the labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.


    • labeling_job_algorithms_config(LabelingJobAlgorithmsConfig) / set_labeling_job_algorithms_config(Option<LabelingJobAlgorithmsConfig>):
      required: false

      Configures the information required to perform automated data labeling.


    • human_task_config(HumanTaskConfig) / set_human_task_config(Option<HumanTaskConfig>):
      required: true

      Configures the labeling task and how it is presented to workers; including, but not limited to price, keywords, and batch size (task count).


    • tags(Tag) / set_tags(Option<Vec::<Tag>>):
      required: false

      An array of key/value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.


  • On success, responds with CreateLabelingJobOutput with field(s):
  • On failure, responds with SdkError<CreateLabelingJobError>
Source§

impl Client

Source

pub fn create_mlflow_tracking_server( &self, ) -> CreateMlflowTrackingServerFluentBuilder

Constructs a fluent builder for the CreateMlflowTrackingServer operation.

Source§

impl Client

Source

pub fn create_model(&self) -> CreateModelFluentBuilder

Constructs a fluent builder for the CreateModel operation.

Source§

impl Client

Source

pub fn create_model_bias_job_definition( &self, ) -> CreateModelBiasJobDefinitionFluentBuilder

Constructs a fluent builder for the CreateModelBiasJobDefinition operation.

Source§

impl Client

Source

pub fn create_model_card(&self) -> CreateModelCardFluentBuilder

Constructs a fluent builder for the CreateModelCard operation.

Source§

impl Client

Source

pub fn create_model_card_export_job( &self, ) -> CreateModelCardExportJobFluentBuilder

Constructs a fluent builder for the CreateModelCardExportJob operation.

Source§

impl Client

Source

pub fn create_model_explainability_job_definition( &self, ) -> CreateModelExplainabilityJobDefinitionFluentBuilder

Constructs a fluent builder for the CreateModelExplainabilityJobDefinition operation.

Source§

impl Client

Source

pub fn create_model_package(&self) -> CreateModelPackageFluentBuilder

Constructs a fluent builder for the CreateModelPackage operation.

Source§

impl Client

Source

pub fn create_model_package_group(&self) -> CreateModelPackageGroupFluentBuilder

Constructs a fluent builder for the CreateModelPackageGroup operation.

Source§

impl Client

Source

pub fn create_model_quality_job_definition( &self, ) -> CreateModelQualityJobDefinitionFluentBuilder

Constructs a fluent builder for the CreateModelQualityJobDefinition operation.

Source§

impl Client

Source

pub fn create_monitoring_schedule( &self, ) -> CreateMonitoringScheduleFluentBuilder

Constructs a fluent builder for the CreateMonitoringSchedule operation.

Source§

impl Client

Source

pub fn create_notebook_instance(&self) -> CreateNotebookInstanceFluentBuilder

Constructs a fluent builder for the CreateNotebookInstance operation.

Source§

impl Client

Source

pub fn create_notebook_instance_lifecycle_config( &self, ) -> CreateNotebookInstanceLifecycleConfigFluentBuilder

Constructs a fluent builder for the CreateNotebookInstanceLifecycleConfig operation.

Source§

impl Client

Source

pub fn create_optimization_job(&self) -> CreateOptimizationJobFluentBuilder

Constructs a fluent builder for the CreateOptimizationJob operation.

Source§

impl Client

Source

pub fn create_partner_app(&self) -> CreatePartnerAppFluentBuilder

Constructs a fluent builder for the CreatePartnerApp operation.

Source§

impl Client

Source

pub fn create_partner_app_presigned_url( &self, ) -> CreatePartnerAppPresignedUrlFluentBuilder

Constructs a fluent builder for the CreatePartnerAppPresignedUrl operation.

Source§

impl Client

Source

pub fn create_pipeline(&self) -> CreatePipelineFluentBuilder

Constructs a fluent builder for the CreatePipeline operation.

Source§

impl Client

Source

pub fn create_presigned_domain_url( &self, ) -> CreatePresignedDomainUrlFluentBuilder

Constructs a fluent builder for the CreatePresignedDomainUrl operation.

Source§

impl Client

Source

pub fn create_presigned_mlflow_tracking_server_url( &self, ) -> CreatePresignedMlflowTrackingServerUrlFluentBuilder

Constructs a fluent builder for the CreatePresignedMlflowTrackingServerUrl operation.

Source§

impl Client

Source

pub fn create_presigned_notebook_instance_url( &self, ) -> CreatePresignedNotebookInstanceUrlFluentBuilder

Constructs a fluent builder for the CreatePresignedNotebookInstanceUrl operation.

Source§

impl Client

Source

pub fn create_processing_job(&self) -> CreateProcessingJobFluentBuilder

Constructs a fluent builder for the CreateProcessingJob operation.

Source§

impl Client

Source

pub fn create_project(&self) -> CreateProjectFluentBuilder

Constructs a fluent builder for the CreateProject operation.

Source§

impl Client

Source

pub fn create_space(&self) -> CreateSpaceFluentBuilder

Constructs a fluent builder for the CreateSpace operation.

Source§

impl Client

Source

pub fn create_studio_lifecycle_config( &self, ) -> CreateStudioLifecycleConfigFluentBuilder

Constructs a fluent builder for the CreateStudioLifecycleConfig operation.

Source§

impl Client

Source

pub fn create_training_job(&self) -> CreateTrainingJobFluentBuilder

Constructs a fluent builder for the CreateTrainingJob operation.

Source§

impl Client

Source

pub fn create_training_plan(&self) -> CreateTrainingPlanFluentBuilder

Constructs a fluent builder for the CreateTrainingPlan operation.

Source§

impl Client

Source

pub fn create_transform_job(&self) -> CreateTransformJobFluentBuilder

Constructs a fluent builder for the CreateTransformJob operation.

Source§

impl Client

Source

pub fn create_trial(&self) -> CreateTrialFluentBuilder

Constructs a fluent builder for the CreateTrial operation.

Source§

impl Client

Source

pub fn create_trial_component(&self) -> CreateTrialComponentFluentBuilder

Constructs a fluent builder for the CreateTrialComponent operation.

Source§

impl Client

Source

pub fn create_user_profile(&self) -> CreateUserProfileFluentBuilder

Constructs a fluent builder for the CreateUserProfile operation.

Source§

impl Client

Source

pub fn create_workforce(&self) -> CreateWorkforceFluentBuilder

Constructs a fluent builder for the CreateWorkforce operation.

Source§

impl Client

Source

pub fn create_workteam(&self) -> CreateWorkteamFluentBuilder

Constructs a fluent builder for the CreateWorkteam operation.

Source§

impl Client

Source

pub fn delete_action(&self) -> DeleteActionFluentBuilder

Constructs a fluent builder for the DeleteAction operation.

Source§

impl Client

Source

pub fn delete_algorithm(&self) -> DeleteAlgorithmFluentBuilder

Constructs a fluent builder for the DeleteAlgorithm operation.

Source§

impl Client

Source

pub fn delete_app(&self) -> DeleteAppFluentBuilder

Constructs a fluent builder for the DeleteApp operation.

Source§

impl Client

Source

pub fn delete_app_image_config(&self) -> DeleteAppImageConfigFluentBuilder

Constructs a fluent builder for the DeleteAppImageConfig operation.

Source§

impl Client

Source

pub fn delete_artifact(&self) -> DeleteArtifactFluentBuilder

Constructs a fluent builder for the DeleteArtifact operation.

Source§

impl Client

Source

pub fn delete_association(&self) -> DeleteAssociationFluentBuilder

Constructs a fluent builder for the DeleteAssociation operation.

Source§

impl Client

Source

pub fn delete_cluster(&self) -> DeleteClusterFluentBuilder

Constructs a fluent builder for the DeleteCluster operation.

Source§

impl Client

Source

pub fn delete_cluster_scheduler_config( &self, ) -> DeleteClusterSchedulerConfigFluentBuilder

Constructs a fluent builder for the DeleteClusterSchedulerConfig operation.

Source§

impl Client

Source

pub fn delete_code_repository(&self) -> DeleteCodeRepositoryFluentBuilder

Constructs a fluent builder for the DeleteCodeRepository operation.

Source§

impl Client

Source

pub fn delete_compilation_job(&self) -> DeleteCompilationJobFluentBuilder

Constructs a fluent builder for the DeleteCompilationJob operation.

Source§

impl Client

Source

pub fn delete_compute_quota(&self) -> DeleteComputeQuotaFluentBuilder

Constructs a fluent builder for the DeleteComputeQuota operation.

Source§

impl Client

Source

pub fn delete_context(&self) -> DeleteContextFluentBuilder

Constructs a fluent builder for the DeleteContext operation.

Source§

impl Client

Source

pub fn delete_data_quality_job_definition( &self, ) -> DeleteDataQualityJobDefinitionFluentBuilder

Constructs a fluent builder for the DeleteDataQualityJobDefinition operation.

Source§

impl Client

Source

pub fn delete_device_fleet(&self) -> DeleteDeviceFleetFluentBuilder

Constructs a fluent builder for the DeleteDeviceFleet operation.

Source§

impl Client

Source

pub fn delete_domain(&self) -> DeleteDomainFluentBuilder

Constructs a fluent builder for the DeleteDomain operation.

Source§

impl Client

Source

pub fn delete_edge_deployment_plan( &self, ) -> DeleteEdgeDeploymentPlanFluentBuilder

Constructs a fluent builder for the DeleteEdgeDeploymentPlan operation.

Source§

impl Client

Source

pub fn delete_edge_deployment_stage( &self, ) -> DeleteEdgeDeploymentStageFluentBuilder

Constructs a fluent builder for the DeleteEdgeDeploymentStage operation.

Source§

impl Client

Source

pub fn delete_endpoint(&self) -> DeleteEndpointFluentBuilder

Constructs a fluent builder for the DeleteEndpoint operation.

Source§

impl Client

Source

pub fn delete_endpoint_config(&self) -> DeleteEndpointConfigFluentBuilder

Constructs a fluent builder for the DeleteEndpointConfig operation.

Source§

impl Client

Source

pub fn delete_experiment(&self) -> DeleteExperimentFluentBuilder

Constructs a fluent builder for the DeleteExperiment operation.

Source§

impl Client

Source

pub fn delete_feature_group(&self) -> DeleteFeatureGroupFluentBuilder

Constructs a fluent builder for the DeleteFeatureGroup operation.

Source§

impl Client

Source

pub fn delete_flow_definition(&self) -> DeleteFlowDefinitionFluentBuilder

Constructs a fluent builder for the DeleteFlowDefinition operation.

Source§

impl Client

Source

pub fn delete_hub(&self) -> DeleteHubFluentBuilder

Constructs a fluent builder for the DeleteHub operation.

Source§

impl Client

Source

pub fn delete_hub_content(&self) -> DeleteHubContentFluentBuilder

Constructs a fluent builder for the DeleteHubContent operation.

Source§

impl Client

Source

pub fn delete_hub_content_reference( &self, ) -> DeleteHubContentReferenceFluentBuilder

Constructs a fluent builder for the DeleteHubContentReference operation.

Source§

impl Client

Source

pub fn delete_human_task_ui(&self) -> DeleteHumanTaskUiFluentBuilder

Constructs a fluent builder for the DeleteHumanTaskUi operation.

Source§

impl Client

Source

pub fn delete_hyper_parameter_tuning_job( &self, ) -> DeleteHyperParameterTuningJobFluentBuilder

Constructs a fluent builder for the DeleteHyperParameterTuningJob operation.

Source§

impl Client

Source

pub fn delete_image(&self) -> DeleteImageFluentBuilder

Constructs a fluent builder for the DeleteImage operation.

Source§

impl Client

Source

pub fn delete_image_version(&self) -> DeleteImageVersionFluentBuilder

Constructs a fluent builder for the DeleteImageVersion operation.

Source§

impl Client

Source

pub fn delete_inference_component( &self, ) -> DeleteInferenceComponentFluentBuilder

Constructs a fluent builder for the DeleteInferenceComponent operation.

Source§

impl Client

Source

pub fn delete_inference_experiment( &self, ) -> DeleteInferenceExperimentFluentBuilder

Constructs a fluent builder for the DeleteInferenceExperiment operation.

Source§

impl Client

Source

pub fn delete_mlflow_tracking_server( &self, ) -> DeleteMlflowTrackingServerFluentBuilder

Constructs a fluent builder for the DeleteMlflowTrackingServer operation.

Source§

impl Client

Source

pub fn delete_model(&self) -> DeleteModelFluentBuilder

Constructs a fluent builder for the DeleteModel operation.

Source§

impl Client

Source

pub fn delete_model_bias_job_definition( &self, ) -> DeleteModelBiasJobDefinitionFluentBuilder

Constructs a fluent builder for the DeleteModelBiasJobDefinition operation.

Source§

impl Client

Source

pub fn delete_model_card(&self) -> DeleteModelCardFluentBuilder

Constructs a fluent builder for the DeleteModelCard operation.

Source§

impl Client

Source

pub fn delete_model_explainability_job_definition( &self, ) -> DeleteModelExplainabilityJobDefinitionFluentBuilder

Constructs a fluent builder for the DeleteModelExplainabilityJobDefinition operation.

Source§

impl Client

Source

pub fn delete_model_package(&self) -> DeleteModelPackageFluentBuilder

Constructs a fluent builder for the DeleteModelPackage operation.

Source§

impl Client

Source

pub fn delete_model_package_group(&self) -> DeleteModelPackageGroupFluentBuilder

Constructs a fluent builder for the DeleteModelPackageGroup operation.

Source§

impl Client

Source

pub fn delete_model_package_group_policy( &self, ) -> DeleteModelPackageGroupPolicyFluentBuilder

Constructs a fluent builder for the DeleteModelPackageGroupPolicy operation.

Source§

impl Client

Source

pub fn delete_model_quality_job_definition( &self, ) -> DeleteModelQualityJobDefinitionFluentBuilder

Constructs a fluent builder for the DeleteModelQualityJobDefinition operation.

Source§

impl Client

Source

pub fn delete_monitoring_schedule( &self, ) -> DeleteMonitoringScheduleFluentBuilder

Constructs a fluent builder for the DeleteMonitoringSchedule operation.

Source§

impl Client

Source

pub fn delete_notebook_instance(&self) -> DeleteNotebookInstanceFluentBuilder

Constructs a fluent builder for the DeleteNotebookInstance operation.

Source§

impl Client

Source§

impl Client

Source

pub fn delete_optimization_job(&self) -> DeleteOptimizationJobFluentBuilder

Constructs a fluent builder for the DeleteOptimizationJob operation.

Source§

impl Client

Source

pub fn delete_partner_app(&self) -> DeletePartnerAppFluentBuilder

Constructs a fluent builder for the DeletePartnerApp operation.

Source§

impl Client

Source

pub fn delete_pipeline(&self) -> DeletePipelineFluentBuilder

Constructs a fluent builder for the DeletePipeline operation.

Source§

impl Client

Source

pub fn delete_project(&self) -> DeleteProjectFluentBuilder

Constructs a fluent builder for the DeleteProject operation.

Source§

impl Client

Source

pub fn delete_space(&self) -> DeleteSpaceFluentBuilder

Constructs a fluent builder for the DeleteSpace operation.

Source§

impl Client

Source

pub fn delete_studio_lifecycle_config( &self, ) -> DeleteStudioLifecycleConfigFluentBuilder

Constructs a fluent builder for the DeleteStudioLifecycleConfig operation.

Source§

impl Client

Source

pub fn delete_tags(&self) -> DeleteTagsFluentBuilder

Constructs a fluent builder for the DeleteTags operation.

Source§

impl Client

Source

pub fn delete_trial(&self) -> DeleteTrialFluentBuilder

Constructs a fluent builder for the DeleteTrial operation.

Source§

impl Client

Source

pub fn delete_trial_component(&self) -> DeleteTrialComponentFluentBuilder

Constructs a fluent builder for the DeleteTrialComponent operation.

Source§

impl Client

Source

pub fn delete_user_profile(&self) -> DeleteUserProfileFluentBuilder

Constructs a fluent builder for the DeleteUserProfile operation.

Source§

impl Client

Source

pub fn delete_workforce(&self) -> DeleteWorkforceFluentBuilder

Constructs a fluent builder for the DeleteWorkforce operation.

Source§

impl Client

Source

pub fn delete_workteam(&self) -> DeleteWorkteamFluentBuilder

Constructs a fluent builder for the DeleteWorkteam operation.

Source§

impl Client

Source

pub fn deregister_devices(&self) -> DeregisterDevicesFluentBuilder

Constructs a fluent builder for the DeregisterDevices operation.

Source§

impl Client

Source

pub fn describe_action(&self) -> DescribeActionFluentBuilder

Constructs a fluent builder for the DescribeAction operation.

Source§

impl Client

Source

pub fn describe_algorithm(&self) -> DescribeAlgorithmFluentBuilder

Constructs a fluent builder for the DescribeAlgorithm operation.

Source§

impl Client

Source

pub fn describe_app(&self) -> DescribeAppFluentBuilder

Constructs a fluent builder for the DescribeApp operation.

Source§

impl Client

Source

pub fn describe_app_image_config(&self) -> DescribeAppImageConfigFluentBuilder

Constructs a fluent builder for the DescribeAppImageConfig operation.

Source§

impl Client

Source

pub fn describe_artifact(&self) -> DescribeArtifactFluentBuilder

Constructs a fluent builder for the DescribeArtifact operation.

Source§

impl Client

Source

pub fn describe_auto_ml_job(&self) -> DescribeAutoMLJobFluentBuilder

Constructs a fluent builder for the DescribeAutoMLJob operation.

Source§

impl Client

Source

pub fn describe_auto_ml_job_v2(&self) -> DescribeAutoMLJobV2FluentBuilder

Constructs a fluent builder for the DescribeAutoMLJobV2 operation.

Source§

impl Client

Source

pub fn describe_cluster(&self) -> DescribeClusterFluentBuilder

Constructs a fluent builder for the DescribeCluster operation.

Source§

impl Client

Source

pub fn describe_cluster_node(&self) -> DescribeClusterNodeFluentBuilder

Constructs a fluent builder for the DescribeClusterNode operation.

Source§

impl Client

Source

pub fn describe_cluster_scheduler_config( &self, ) -> DescribeClusterSchedulerConfigFluentBuilder

Constructs a fluent builder for the DescribeClusterSchedulerConfig operation.

Source§

impl Client

Source

pub fn describe_code_repository(&self) -> DescribeCodeRepositoryFluentBuilder

Constructs a fluent builder for the DescribeCodeRepository operation.

Source§

impl Client

Source

pub fn describe_compilation_job(&self) -> DescribeCompilationJobFluentBuilder

Constructs a fluent builder for the DescribeCompilationJob operation.

Source§

impl Client

Source

pub fn describe_compute_quota(&self) -> DescribeComputeQuotaFluentBuilder

Constructs a fluent builder for the DescribeComputeQuota operation.

Source§

impl Client

Source

pub fn describe_context(&self) -> DescribeContextFluentBuilder

Constructs a fluent builder for the DescribeContext operation.

Source§

impl Client

Source

pub fn describe_data_quality_job_definition( &self, ) -> DescribeDataQualityJobDefinitionFluentBuilder

Constructs a fluent builder for the DescribeDataQualityJobDefinition operation.

Source§

impl Client

Source

pub fn describe_device(&self) -> DescribeDeviceFluentBuilder

Constructs a fluent builder for the DescribeDevice operation.

Source§

impl Client

Source

pub fn describe_device_fleet(&self) -> DescribeDeviceFleetFluentBuilder

Constructs a fluent builder for the DescribeDeviceFleet operation.

Source§

impl Client

Source

pub fn describe_domain(&self) -> DescribeDomainFluentBuilder

Constructs a fluent builder for the DescribeDomain operation.

Source§

impl Client

Source

pub fn describe_edge_deployment_plan( &self, ) -> DescribeEdgeDeploymentPlanFluentBuilder

Constructs a fluent builder for the DescribeEdgeDeploymentPlan operation.

Source§

impl Client

Source

pub fn describe_edge_packaging_job( &self, ) -> DescribeEdgePackagingJobFluentBuilder

Constructs a fluent builder for the DescribeEdgePackagingJob operation.

Source§

impl Client

Source

pub fn describe_endpoint(&self) -> DescribeEndpointFluentBuilder

Constructs a fluent builder for the DescribeEndpoint operation.

Source§

impl Client

Source

pub fn describe_endpoint_config(&self) -> DescribeEndpointConfigFluentBuilder

Constructs a fluent builder for the DescribeEndpointConfig operation.

Source§

impl Client

Source

pub fn describe_experiment(&self) -> DescribeExperimentFluentBuilder

Constructs a fluent builder for the DescribeExperiment operation.

Source§

impl Client

Source

pub fn describe_feature_group(&self) -> DescribeFeatureGroupFluentBuilder

Constructs a fluent builder for the DescribeFeatureGroup operation.

Source§

impl Client

Source

pub fn describe_feature_metadata(&self) -> DescribeFeatureMetadataFluentBuilder

Constructs a fluent builder for the DescribeFeatureMetadata operation.

Source§

impl Client

Source

pub fn describe_flow_definition(&self) -> DescribeFlowDefinitionFluentBuilder

Constructs a fluent builder for the DescribeFlowDefinition operation.

Source§

impl Client

Source

pub fn describe_hub(&self) -> DescribeHubFluentBuilder

Constructs a fluent builder for the DescribeHub operation.

Source§

impl Client

Source

pub fn describe_hub_content(&self) -> DescribeHubContentFluentBuilder

Constructs a fluent builder for the DescribeHubContent operation.

Source§

impl Client

Source

pub fn describe_human_task_ui(&self) -> DescribeHumanTaskUiFluentBuilder

Constructs a fluent builder for the DescribeHumanTaskUi operation.

Source§

impl Client

Source

pub fn describe_hyper_parameter_tuning_job( &self, ) -> DescribeHyperParameterTuningJobFluentBuilder

Constructs a fluent builder for the DescribeHyperParameterTuningJob operation.

Source§

impl Client

Source

pub fn describe_image(&self) -> DescribeImageFluentBuilder

Constructs a fluent builder for the DescribeImage operation.

Source§

impl Client

Source

pub fn describe_image_version(&self) -> DescribeImageVersionFluentBuilder

Constructs a fluent builder for the DescribeImageVersion operation.

Source§

impl Client

Source

pub fn describe_inference_component( &self, ) -> DescribeInferenceComponentFluentBuilder

Constructs a fluent builder for the DescribeInferenceComponent operation.

Source§

impl Client

Source

pub fn describe_inference_experiment( &self, ) -> DescribeInferenceExperimentFluentBuilder

Constructs a fluent builder for the DescribeInferenceExperiment operation.

Source§

impl Client

Source

pub fn describe_inference_recommendations_job( &self, ) -> DescribeInferenceRecommendationsJobFluentBuilder

Constructs a fluent builder for the DescribeInferenceRecommendationsJob operation.

Source§

impl Client

Source

pub fn describe_labeling_job(&self) -> DescribeLabelingJobFluentBuilder

Constructs a fluent builder for the DescribeLabelingJob operation.

Source§

impl Client

Source

pub fn describe_lineage_group(&self) -> DescribeLineageGroupFluentBuilder

Constructs a fluent builder for the DescribeLineageGroup operation.

Source§

impl Client

Source

pub fn describe_mlflow_tracking_server( &self, ) -> DescribeMlflowTrackingServerFluentBuilder

Constructs a fluent builder for the DescribeMlflowTrackingServer operation.

Source§

impl Client

Source

pub fn describe_model(&self) -> DescribeModelFluentBuilder

Constructs a fluent builder for the DescribeModel operation.

Source§

impl Client

Source

pub fn describe_model_bias_job_definition( &self, ) -> DescribeModelBiasJobDefinitionFluentBuilder

Constructs a fluent builder for the DescribeModelBiasJobDefinition operation.

Source§

impl Client

Source

pub fn describe_model_card(&self) -> DescribeModelCardFluentBuilder

Constructs a fluent builder for the DescribeModelCard operation.

Source§

impl Client

Source

pub fn describe_model_card_export_job( &self, ) -> DescribeModelCardExportJobFluentBuilder

Constructs a fluent builder for the DescribeModelCardExportJob operation.

Source§

impl Client

Source

pub fn describe_model_explainability_job_definition( &self, ) -> DescribeModelExplainabilityJobDefinitionFluentBuilder

Constructs a fluent builder for the DescribeModelExplainabilityJobDefinition operation.

Source§

impl Client

Source

pub fn describe_model_package(&self) -> DescribeModelPackageFluentBuilder

Constructs a fluent builder for the DescribeModelPackage operation.

Source§

impl Client

Source

pub fn describe_model_package_group( &self, ) -> DescribeModelPackageGroupFluentBuilder

Constructs a fluent builder for the DescribeModelPackageGroup operation.

Source§

impl Client

Source

pub fn describe_model_quality_job_definition( &self, ) -> DescribeModelQualityJobDefinitionFluentBuilder

Constructs a fluent builder for the DescribeModelQualityJobDefinition operation.

Source§

impl Client

Source

pub fn describe_monitoring_schedule( &self, ) -> DescribeMonitoringScheduleFluentBuilder

Constructs a fluent builder for the DescribeMonitoringSchedule operation.

Source§

impl Client

Source

pub fn describe_notebook_instance( &self, ) -> DescribeNotebookInstanceFluentBuilder

Constructs a fluent builder for the DescribeNotebookInstance operation.

Source§

impl Client

Source

pub fn describe_notebook_instance_lifecycle_config( &self, ) -> DescribeNotebookInstanceLifecycleConfigFluentBuilder

Constructs a fluent builder for the DescribeNotebookInstanceLifecycleConfig operation.

Source§

impl Client

Source

pub fn describe_optimization_job(&self) -> DescribeOptimizationJobFluentBuilder

Constructs a fluent builder for the DescribeOptimizationJob operation.

Source§

impl Client

Source

pub fn describe_partner_app(&self) -> DescribePartnerAppFluentBuilder

Constructs a fluent builder for the DescribePartnerApp operation.

Source§

impl Client

Source

pub fn describe_pipeline(&self) -> DescribePipelineFluentBuilder

Constructs a fluent builder for the DescribePipeline operation.

Source§

impl Client

Source

pub fn describe_pipeline_definition_for_execution( &self, ) -> DescribePipelineDefinitionForExecutionFluentBuilder

Constructs a fluent builder for the DescribePipelineDefinitionForExecution operation.

Source§

impl Client

Source

pub fn describe_pipeline_execution( &self, ) -> DescribePipelineExecutionFluentBuilder

Constructs a fluent builder for the DescribePipelineExecution operation.

Source§

impl Client

Source

pub fn describe_processing_job(&self) -> DescribeProcessingJobFluentBuilder

Constructs a fluent builder for the DescribeProcessingJob operation.

Source§

impl Client

Source

pub fn describe_project(&self) -> DescribeProjectFluentBuilder

Constructs a fluent builder for the DescribeProject operation.

Source§

impl Client

Source

pub fn describe_space(&self) -> DescribeSpaceFluentBuilder

Constructs a fluent builder for the DescribeSpace operation.

Source§

impl Client

Source

pub fn describe_studio_lifecycle_config( &self, ) -> DescribeStudioLifecycleConfigFluentBuilder

Constructs a fluent builder for the DescribeStudioLifecycleConfig operation.

Source§

impl Client

Source

pub fn describe_subscribed_workteam( &self, ) -> DescribeSubscribedWorkteamFluentBuilder

Constructs a fluent builder for the DescribeSubscribedWorkteam operation.

Source§

impl Client

Source

pub fn describe_training_job(&self) -> DescribeTrainingJobFluentBuilder

Constructs a fluent builder for the DescribeTrainingJob operation.

Source§

impl Client

Source

pub fn describe_training_plan(&self) -> DescribeTrainingPlanFluentBuilder

Constructs a fluent builder for the DescribeTrainingPlan operation.

Source§

impl Client

Source

pub fn describe_transform_job(&self) -> DescribeTransformJobFluentBuilder

Constructs a fluent builder for the DescribeTransformJob operation.

Source§

impl Client

Source

pub fn describe_trial(&self) -> DescribeTrialFluentBuilder

Constructs a fluent builder for the DescribeTrial operation.

Source§

impl Client

Source

pub fn describe_trial_component(&self) -> DescribeTrialComponentFluentBuilder

Constructs a fluent builder for the DescribeTrialComponent operation.

Source§

impl Client

Source

pub fn describe_user_profile(&self) -> DescribeUserProfileFluentBuilder

Constructs a fluent builder for the DescribeUserProfile operation.

Source§

impl Client

Source

pub fn describe_workforce(&self) -> DescribeWorkforceFluentBuilder

Constructs a fluent builder for the DescribeWorkforce operation.

Source§

impl Client

Source

pub fn describe_workteam(&self) -> DescribeWorkteamFluentBuilder

Constructs a fluent builder for the DescribeWorkteam operation.

Source§

impl Client

Source

pub fn disable_sagemaker_servicecatalog_portfolio( &self, ) -> DisableSagemakerServicecatalogPortfolioFluentBuilder

Constructs a fluent builder for the DisableSagemakerServicecatalogPortfolio operation.

Source§

impl Client

Source

pub fn disassociate_trial_component( &self, ) -> DisassociateTrialComponentFluentBuilder

Constructs a fluent builder for the DisassociateTrialComponent operation.

Source§

impl Client

Source

pub fn enable_sagemaker_servicecatalog_portfolio( &self, ) -> EnableSagemakerServicecatalogPortfolioFluentBuilder

Constructs a fluent builder for the EnableSagemakerServicecatalogPortfolio operation.

Source§

impl Client

Source

pub fn get_device_fleet_report(&self) -> GetDeviceFleetReportFluentBuilder

Constructs a fluent builder for the GetDeviceFleetReport operation.

Source§

impl Client

Source

pub fn get_lineage_group_policy(&self) -> GetLineageGroupPolicyFluentBuilder

Constructs a fluent builder for the GetLineageGroupPolicy operation.

Source§

impl Client

Source

pub fn get_model_package_group_policy( &self, ) -> GetModelPackageGroupPolicyFluentBuilder

Constructs a fluent builder for the GetModelPackageGroupPolicy operation.

Source§

impl Client

Source

pub fn get_sagemaker_servicecatalog_portfolio_status( &self, ) -> GetSagemakerServicecatalogPortfolioStatusFluentBuilder

Constructs a fluent builder for the GetSagemakerServicecatalogPortfolioStatus operation.

Source§

impl Client

Source

pub fn get_scaling_configuration_recommendation( &self, ) -> GetScalingConfigurationRecommendationFluentBuilder

Constructs a fluent builder for the GetScalingConfigurationRecommendation operation.

Source§

impl Client

Source

pub fn get_search_suggestions(&self) -> GetSearchSuggestionsFluentBuilder

Constructs a fluent builder for the GetSearchSuggestions operation.

Source§

impl Client

Source

pub fn import_hub_content(&self) -> ImportHubContentFluentBuilder

Constructs a fluent builder for the ImportHubContent operation.

Source§

impl Client

Source

pub fn list_actions(&self) -> ListActionsFluentBuilder

Constructs a fluent builder for the ListActions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_algorithms(&self) -> ListAlgorithmsFluentBuilder

Constructs a fluent builder for the ListAlgorithms operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_aliases(&self) -> ListAliasesFluentBuilder

Constructs a fluent builder for the ListAliases operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_app_image_configs(&self) -> ListAppImageConfigsFluentBuilder

Constructs a fluent builder for the ListAppImageConfigs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_apps(&self) -> ListAppsFluentBuilder

Constructs a fluent builder for the ListApps operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_artifacts(&self) -> ListArtifactsFluentBuilder

Constructs a fluent builder for the ListArtifacts operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_associations(&self) -> ListAssociationsFluentBuilder

Constructs a fluent builder for the ListAssociations operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_auto_ml_jobs(&self) -> ListAutoMLJobsFluentBuilder

Constructs a fluent builder for the ListAutoMLJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_candidates_for_auto_ml_job( &self, ) -> ListCandidatesForAutoMLJobFluentBuilder

Constructs a fluent builder for the ListCandidatesForAutoMLJob operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_cluster_nodes(&self) -> ListClusterNodesFluentBuilder

Constructs a fluent builder for the ListClusterNodes operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_cluster_scheduler_configs( &self, ) -> ListClusterSchedulerConfigsFluentBuilder

Constructs a fluent builder for the ListClusterSchedulerConfigs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_clusters(&self) -> ListClustersFluentBuilder

Constructs a fluent builder for the ListClusters operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_code_repositories(&self) -> ListCodeRepositoriesFluentBuilder

Constructs a fluent builder for the ListCodeRepositories operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_compilation_jobs(&self) -> ListCompilationJobsFluentBuilder

Constructs a fluent builder for the ListCompilationJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_compute_quotas(&self) -> ListComputeQuotasFluentBuilder

Constructs a fluent builder for the ListComputeQuotas operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_contexts(&self) -> ListContextsFluentBuilder

Constructs a fluent builder for the ListContexts operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_data_quality_job_definitions( &self, ) -> ListDataQualityJobDefinitionsFluentBuilder

Constructs a fluent builder for the ListDataQualityJobDefinitions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_device_fleets(&self) -> ListDeviceFleetsFluentBuilder

Constructs a fluent builder for the ListDeviceFleets operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_devices(&self) -> ListDevicesFluentBuilder

Constructs a fluent builder for the ListDevices operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_domains(&self) -> ListDomainsFluentBuilder

Constructs a fluent builder for the ListDomains operation. This operation supports pagination; See into_paginator().

  • The fluent builder is configurable:
    • next_token(impl Into<String>) / set_next_token(Option<String>):
      required: false

      If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.


    • max_results(i32) / set_max_results(Option<i32>):
      required: false

      This parameter defines the maximum number of results that can be return in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.


  • On success, responds with ListDomainsOutput with field(s):
  • On failure, responds with SdkError<ListDomainsError>
Source§

impl Client

Source

pub fn list_edge_deployment_plans(&self) -> ListEdgeDeploymentPlansFluentBuilder

Constructs a fluent builder for the ListEdgeDeploymentPlans operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_edge_packaging_jobs(&self) -> ListEdgePackagingJobsFluentBuilder

Constructs a fluent builder for the ListEdgePackagingJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_endpoint_configs(&self) -> ListEndpointConfigsFluentBuilder

Constructs a fluent builder for the ListEndpointConfigs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_endpoints(&self) -> ListEndpointsFluentBuilder

Constructs a fluent builder for the ListEndpoints operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_experiments(&self) -> ListExperimentsFluentBuilder

Constructs a fluent builder for the ListExperiments operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_feature_groups(&self) -> ListFeatureGroupsFluentBuilder

Constructs a fluent builder for the ListFeatureGroups operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_flow_definitions(&self) -> ListFlowDefinitionsFluentBuilder

Constructs a fluent builder for the ListFlowDefinitions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_hub_content_versions(&self) -> ListHubContentVersionsFluentBuilder

Constructs a fluent builder for the ListHubContentVersions operation.

Source§

impl Client

Source

pub fn list_hub_contents(&self) -> ListHubContentsFluentBuilder

Constructs a fluent builder for the ListHubContents operation.

Source§

impl Client

Source

pub fn list_hubs(&self) -> ListHubsFluentBuilder

Constructs a fluent builder for the ListHubs operation.

Source§

impl Client

Source

pub fn list_human_task_uis(&self) -> ListHumanTaskUisFluentBuilder

Constructs a fluent builder for the ListHumanTaskUis operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_hyper_parameter_tuning_jobs( &self, ) -> ListHyperParameterTuningJobsFluentBuilder

Constructs a fluent builder for the ListHyperParameterTuningJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_image_versions(&self) -> ListImageVersionsFluentBuilder

Constructs a fluent builder for the ListImageVersions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_images(&self) -> ListImagesFluentBuilder

Constructs a fluent builder for the ListImages operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_inference_components(&self) -> ListInferenceComponentsFluentBuilder

Constructs a fluent builder for the ListInferenceComponents operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_inference_experiments( &self, ) -> ListInferenceExperimentsFluentBuilder

Constructs a fluent builder for the ListInferenceExperiments operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_inference_recommendations_job_steps( &self, ) -> ListInferenceRecommendationsJobStepsFluentBuilder

Constructs a fluent builder for the ListInferenceRecommendationsJobSteps operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_inference_recommendations_jobs( &self, ) -> ListInferenceRecommendationsJobsFluentBuilder

Constructs a fluent builder for the ListInferenceRecommendationsJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_labeling_jobs(&self) -> ListLabelingJobsFluentBuilder

Constructs a fluent builder for the ListLabelingJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_labeling_jobs_for_workteam( &self, ) -> ListLabelingJobsForWorkteamFluentBuilder

Constructs a fluent builder for the ListLabelingJobsForWorkteam operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_lineage_groups(&self) -> ListLineageGroupsFluentBuilder

Constructs a fluent builder for the ListLineageGroups operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_mlflow_tracking_servers( &self, ) -> ListMlflowTrackingServersFluentBuilder

Constructs a fluent builder for the ListMlflowTrackingServers operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_bias_job_definitions( &self, ) -> ListModelBiasJobDefinitionsFluentBuilder

Constructs a fluent builder for the ListModelBiasJobDefinitions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_card_export_jobs( &self, ) -> ListModelCardExportJobsFluentBuilder

Constructs a fluent builder for the ListModelCardExportJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_card_versions(&self) -> ListModelCardVersionsFluentBuilder

Constructs a fluent builder for the ListModelCardVersions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_cards(&self) -> ListModelCardsFluentBuilder

Constructs a fluent builder for the ListModelCards operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_explainability_job_definitions( &self, ) -> ListModelExplainabilityJobDefinitionsFluentBuilder

Constructs a fluent builder for the ListModelExplainabilityJobDefinitions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_metadata(&self) -> ListModelMetadataFluentBuilder

Constructs a fluent builder for the ListModelMetadata operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_package_groups(&self) -> ListModelPackageGroupsFluentBuilder

Constructs a fluent builder for the ListModelPackageGroups operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_packages(&self) -> ListModelPackagesFluentBuilder

Constructs a fluent builder for the ListModelPackages operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_model_quality_job_definitions( &self, ) -> ListModelQualityJobDefinitionsFluentBuilder

Constructs a fluent builder for the ListModelQualityJobDefinitions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_models(&self) -> ListModelsFluentBuilder

Constructs a fluent builder for the ListModels operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_monitoring_alert_history( &self, ) -> ListMonitoringAlertHistoryFluentBuilder

Constructs a fluent builder for the ListMonitoringAlertHistory operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_monitoring_alerts(&self) -> ListMonitoringAlertsFluentBuilder

Constructs a fluent builder for the ListMonitoringAlerts operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_monitoring_executions( &self, ) -> ListMonitoringExecutionsFluentBuilder

Constructs a fluent builder for the ListMonitoringExecutions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_monitoring_schedules(&self) -> ListMonitoringSchedulesFluentBuilder

Constructs a fluent builder for the ListMonitoringSchedules operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_notebook_instance_lifecycle_configs( &self, ) -> ListNotebookInstanceLifecycleConfigsFluentBuilder

Constructs a fluent builder for the ListNotebookInstanceLifecycleConfigs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_notebook_instances(&self) -> ListNotebookInstancesFluentBuilder

Constructs a fluent builder for the ListNotebookInstances operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_optimization_jobs(&self) -> ListOptimizationJobsFluentBuilder

Constructs a fluent builder for the ListOptimizationJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_partner_apps(&self) -> ListPartnerAppsFluentBuilder

Constructs a fluent builder for the ListPartnerApps operation. This operation supports pagination; See into_paginator().

  • The fluent builder is configurable:
    • max_results(i32) / set_max_results(Option<i32>):
      required: false

      This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.


    • next_token(impl Into<String>) / set_next_token(Option<String>):
      required: false

      If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.


  • On success, responds with ListPartnerAppsOutput with field(s):
  • On failure, responds with SdkError<ListPartnerAppsError>
Source§

impl Client

Source

pub fn list_pipeline_execution_steps( &self, ) -> ListPipelineExecutionStepsFluentBuilder

Constructs a fluent builder for the ListPipelineExecutionSteps operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_pipeline_executions(&self) -> ListPipelineExecutionsFluentBuilder

Constructs a fluent builder for the ListPipelineExecutions operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_pipeline_parameters_for_execution( &self, ) -> ListPipelineParametersForExecutionFluentBuilder

Constructs a fluent builder for the ListPipelineParametersForExecution operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_pipelines(&self) -> ListPipelinesFluentBuilder

Constructs a fluent builder for the ListPipelines operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_processing_jobs(&self) -> ListProcessingJobsFluentBuilder

Constructs a fluent builder for the ListProcessingJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_projects(&self) -> ListProjectsFluentBuilder

Constructs a fluent builder for the ListProjects operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_resource_catalogs(&self) -> ListResourceCatalogsFluentBuilder

Constructs a fluent builder for the ListResourceCatalogs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_spaces(&self) -> ListSpacesFluentBuilder

Constructs a fluent builder for the ListSpaces operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_stage_devices(&self) -> ListStageDevicesFluentBuilder

Constructs a fluent builder for the ListStageDevices operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_studio_lifecycle_configs( &self, ) -> ListStudioLifecycleConfigsFluentBuilder

Constructs a fluent builder for the ListStudioLifecycleConfigs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_subscribed_workteams(&self) -> ListSubscribedWorkteamsFluentBuilder

Constructs a fluent builder for the ListSubscribedWorkteams operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_tags(&self) -> ListTagsFluentBuilder

Constructs a fluent builder for the ListTags operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_training_jobs(&self) -> ListTrainingJobsFluentBuilder

Constructs a fluent builder for the ListTrainingJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_training_jobs_for_hyper_parameter_tuning_job( &self, ) -> ListTrainingJobsForHyperParameterTuningJobFluentBuilder

Constructs a fluent builder for the ListTrainingJobsForHyperParameterTuningJob operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_training_plans(&self) -> ListTrainingPlansFluentBuilder

Constructs a fluent builder for the ListTrainingPlans operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_transform_jobs(&self) -> ListTransformJobsFluentBuilder

Constructs a fluent builder for the ListTransformJobs operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_trial_components(&self) -> ListTrialComponentsFluentBuilder

Constructs a fluent builder for the ListTrialComponents operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_trials(&self) -> ListTrialsFluentBuilder

Constructs a fluent builder for the ListTrials operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_user_profiles(&self) -> ListUserProfilesFluentBuilder

Constructs a fluent builder for the ListUserProfiles operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_workforces(&self) -> ListWorkforcesFluentBuilder

Constructs a fluent builder for the ListWorkforces operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn list_workteams(&self) -> ListWorkteamsFluentBuilder

Constructs a fluent builder for the ListWorkteams operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn put_model_package_group_policy( &self, ) -> PutModelPackageGroupPolicyFluentBuilder

Constructs a fluent builder for the PutModelPackageGroupPolicy operation.

Source§

impl Client

Source

pub fn query_lineage(&self) -> QueryLineageFluentBuilder

Constructs a fluent builder for the QueryLineage operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn register_devices(&self) -> RegisterDevicesFluentBuilder

Constructs a fluent builder for the RegisterDevices operation.

Source§

impl Client

Source

pub fn render_ui_template(&self) -> RenderUiTemplateFluentBuilder

Constructs a fluent builder for the RenderUiTemplate operation.

Source§

impl Client

Source

pub fn retry_pipeline_execution(&self) -> RetryPipelineExecutionFluentBuilder

Constructs a fluent builder for the RetryPipelineExecution operation.

Source§

impl Client

Source

pub fn search(&self) -> SearchFluentBuilder

Constructs a fluent builder for the Search operation. This operation supports pagination; See into_paginator().

Source§

impl Client

Source

pub fn search_training_plan_offerings( &self, ) -> SearchTrainingPlanOfferingsFluentBuilder

Constructs a fluent builder for the SearchTrainingPlanOfferings operation.

Source§

impl Client

Source

pub fn send_pipeline_execution_step_failure( &self, ) -> SendPipelineExecutionStepFailureFluentBuilder

Constructs a fluent builder for the SendPipelineExecutionStepFailure operation.

Source§

impl Client

Source

pub fn send_pipeline_execution_step_success( &self, ) -> SendPipelineExecutionStepSuccessFluentBuilder

Constructs a fluent builder for the SendPipelineExecutionStepSuccess operation.

Source§

impl Client

Source

pub fn start_edge_deployment_stage( &self, ) -> StartEdgeDeploymentStageFluentBuilder

Constructs a fluent builder for the StartEdgeDeploymentStage operation.

Source§

impl Client

Source

pub fn start_inference_experiment( &self, ) -> StartInferenceExperimentFluentBuilder

Constructs a fluent builder for the StartInferenceExperiment operation.

Source§

impl Client

Source

pub fn start_mlflow_tracking_server( &self, ) -> StartMlflowTrackingServerFluentBuilder

Constructs a fluent builder for the StartMlflowTrackingServer operation.

Source§

impl Client

Source

pub fn start_monitoring_schedule(&self) -> StartMonitoringScheduleFluentBuilder

Constructs a fluent builder for the StartMonitoringSchedule operation.

Source§

impl Client

Source

pub fn start_notebook_instance(&self) -> StartNotebookInstanceFluentBuilder

Constructs a fluent builder for the StartNotebookInstance operation.

Source§

impl Client

Source

pub fn start_pipeline_execution(&self) -> StartPipelineExecutionFluentBuilder

Constructs a fluent builder for the StartPipelineExecution operation.

Source§

impl Client

Source

pub fn stop_auto_ml_job(&self) -> StopAutoMLJobFluentBuilder

Constructs a fluent builder for the StopAutoMLJob operation.

Source§

impl Client

Source

pub fn stop_compilation_job(&self) -> StopCompilationJobFluentBuilder

Constructs a fluent builder for the StopCompilationJob operation.

Source§

impl Client

Source

pub fn stop_edge_deployment_stage(&self) -> StopEdgeDeploymentStageFluentBuilder

Constructs a fluent builder for the StopEdgeDeploymentStage operation.

Source§

impl Client

Source

pub fn stop_edge_packaging_job(&self) -> StopEdgePackagingJobFluentBuilder

Constructs a fluent builder for the StopEdgePackagingJob operation.

Source§

impl Client

Source

pub fn stop_hyper_parameter_tuning_job( &self, ) -> StopHyperParameterTuningJobFluentBuilder

Constructs a fluent builder for the StopHyperParameterTuningJob operation.

Source§

impl Client

Source

pub fn stop_inference_experiment(&self) -> StopInferenceExperimentFluentBuilder

Constructs a fluent builder for the StopInferenceExperiment operation.

Source§

impl Client

Source

pub fn stop_inference_recommendations_job( &self, ) -> StopInferenceRecommendationsJobFluentBuilder

Constructs a fluent builder for the StopInferenceRecommendationsJob operation.

Source§

impl Client

Source

pub fn stop_labeling_job(&self) -> StopLabelingJobFluentBuilder

Constructs a fluent builder for the StopLabelingJob operation.

Source§

impl Client

Source

pub fn stop_mlflow_tracking_server( &self, ) -> StopMlflowTrackingServerFluentBuilder

Constructs a fluent builder for the StopMlflowTrackingServer operation.

Source§

impl Client

Source

pub fn stop_monitoring_schedule(&self) -> StopMonitoringScheduleFluentBuilder

Constructs a fluent builder for the StopMonitoringSchedule operation.

Source§

impl Client

Source

pub fn stop_notebook_instance(&self) -> StopNotebookInstanceFluentBuilder

Constructs a fluent builder for the StopNotebookInstance operation.

Source§

impl Client

Source

pub fn stop_optimization_job(&self) -> StopOptimizationJobFluentBuilder

Constructs a fluent builder for the StopOptimizationJob operation.

Source§

impl Client

Source

pub fn stop_pipeline_execution(&self) -> StopPipelineExecutionFluentBuilder

Constructs a fluent builder for the StopPipelineExecution operation.

Source§

impl Client

Source

pub fn stop_processing_job(&self) -> StopProcessingJobFluentBuilder

Constructs a fluent builder for the StopProcessingJob operation.

Source§

impl Client

Source

pub fn stop_training_job(&self) -> StopTrainingJobFluentBuilder

Constructs a fluent builder for the StopTrainingJob operation.

Source§

impl Client

Source

pub fn stop_transform_job(&self) -> StopTransformJobFluentBuilder

Constructs a fluent builder for the StopTransformJob operation.

Source§

impl Client

Source

pub fn update_action(&self) -> UpdateActionFluentBuilder

Constructs a fluent builder for the UpdateAction operation.

Source§

impl Client

Source

pub fn update_app_image_config(&self) -> UpdateAppImageConfigFluentBuilder

Constructs a fluent builder for the UpdateAppImageConfig operation.

Source§

impl Client

Source

pub fn update_artifact(&self) -> UpdateArtifactFluentBuilder

Constructs a fluent builder for the UpdateArtifact operation.

Source§

impl Client

Source

pub fn update_cluster(&self) -> UpdateClusterFluentBuilder

Constructs a fluent builder for the UpdateCluster operation.

Source§

impl Client

Source

pub fn update_cluster_scheduler_config( &self, ) -> UpdateClusterSchedulerConfigFluentBuilder

Constructs a fluent builder for the UpdateClusterSchedulerConfig operation.

Source§

impl Client

Source

pub fn update_cluster_software(&self) -> UpdateClusterSoftwareFluentBuilder

Constructs a fluent builder for the UpdateClusterSoftware operation.

Source§

impl Client

Source

pub fn update_code_repository(&self) -> UpdateCodeRepositoryFluentBuilder

Constructs a fluent builder for the UpdateCodeRepository operation.

Source§

impl Client

Source

pub fn update_compute_quota(&self) -> UpdateComputeQuotaFluentBuilder

Constructs a fluent builder for the UpdateComputeQuota operation.

Source§

impl Client

Source

pub fn update_context(&self) -> UpdateContextFluentBuilder

Constructs a fluent builder for the UpdateContext operation.

Source§

impl Client

Source

pub fn update_device_fleet(&self) -> UpdateDeviceFleetFluentBuilder

Constructs a fluent builder for the UpdateDeviceFleet operation.

Source§

impl Client

Source

pub fn update_devices(&self) -> UpdateDevicesFluentBuilder

Constructs a fluent builder for the UpdateDevices operation.

Source§

impl Client

Source

pub fn update_domain(&self) -> UpdateDomainFluentBuilder

Constructs a fluent builder for the UpdateDomain operation.

Source§

impl Client

Source

pub fn update_endpoint(&self) -> UpdateEndpointFluentBuilder

Constructs a fluent builder for the UpdateEndpoint operation.

Source§

impl Client

Source

pub fn update_endpoint_weights_and_capacities( &self, ) -> UpdateEndpointWeightsAndCapacitiesFluentBuilder

Constructs a fluent builder for the UpdateEndpointWeightsAndCapacities operation.

Source§

impl Client

Source

pub fn update_experiment(&self) -> UpdateExperimentFluentBuilder

Constructs a fluent builder for the UpdateExperiment operation.

Source§

impl Client

Source

pub fn update_feature_group(&self) -> UpdateFeatureGroupFluentBuilder

Constructs a fluent builder for the UpdateFeatureGroup operation.

Source§

impl Client

Source

pub fn update_feature_metadata(&self) -> UpdateFeatureMetadataFluentBuilder

Constructs a fluent builder for the UpdateFeatureMetadata operation.

Source§

impl Client

Source

pub fn update_hub(&self) -> UpdateHubFluentBuilder

Constructs a fluent builder for the UpdateHub operation.

Source§

impl Client

Source

pub fn update_hub_content(&self) -> UpdateHubContentFluentBuilder

Constructs a fluent builder for the UpdateHubContent operation.

Source§

impl Client

Source

pub fn update_hub_content_reference( &self, ) -> UpdateHubContentReferenceFluentBuilder

Constructs a fluent builder for the UpdateHubContentReference operation.

Source§

impl Client

Source

pub fn update_image(&self) -> UpdateImageFluentBuilder

Constructs a fluent builder for the UpdateImage operation.

Source§

impl Client

Source

pub fn update_image_version(&self) -> UpdateImageVersionFluentBuilder

Constructs a fluent builder for the UpdateImageVersion operation.

Source§

impl Client

Source

pub fn update_inference_component( &self, ) -> UpdateInferenceComponentFluentBuilder

Constructs a fluent builder for the UpdateInferenceComponent operation.

Source§

impl Client

Source

pub fn update_inference_component_runtime_config( &self, ) -> UpdateInferenceComponentRuntimeConfigFluentBuilder

Constructs a fluent builder for the UpdateInferenceComponentRuntimeConfig operation.

Source§

impl Client

Source

pub fn update_inference_experiment( &self, ) -> UpdateInferenceExperimentFluentBuilder

Constructs a fluent builder for the UpdateInferenceExperiment operation.

Source§

impl Client

Source

pub fn update_mlflow_tracking_server( &self, ) -> UpdateMlflowTrackingServerFluentBuilder

Constructs a fluent builder for the UpdateMlflowTrackingServer operation.

Source§

impl Client

Source

pub fn update_model_card(&self) -> UpdateModelCardFluentBuilder

Constructs a fluent builder for the UpdateModelCard operation.

Source§

impl Client

Source

pub fn update_model_package(&self) -> UpdateModelPackageFluentBuilder

Constructs a fluent builder for the UpdateModelPackage operation.

Source§

impl Client

Source

pub fn update_monitoring_alert(&self) -> UpdateMonitoringAlertFluentBuilder

Constructs a fluent builder for the UpdateMonitoringAlert operation.

Source§

impl Client

Source

pub fn update_monitoring_schedule( &self, ) -> UpdateMonitoringScheduleFluentBuilder

Constructs a fluent builder for the UpdateMonitoringSchedule operation.

Source§

impl Client

Source

pub fn update_notebook_instance(&self) -> UpdateNotebookInstanceFluentBuilder

Constructs a fluent builder for the UpdateNotebookInstance operation.

Source§

impl Client

Source

pub fn update_notebook_instance_lifecycle_config( &self, ) -> UpdateNotebookInstanceLifecycleConfigFluentBuilder

Constructs a fluent builder for the UpdateNotebookInstanceLifecycleConfig operation.

Source§

impl Client

Source

pub fn update_partner_app(&self) -> UpdatePartnerAppFluentBuilder

Constructs a fluent builder for the UpdatePartnerApp operation.

Source§

impl Client

Source

pub fn update_pipeline(&self) -> UpdatePipelineFluentBuilder

Constructs a fluent builder for the UpdatePipeline operation.

Source§

impl Client

Source

pub fn update_pipeline_execution(&self) -> UpdatePipelineExecutionFluentBuilder

Constructs a fluent builder for the UpdatePipelineExecution operation.

Source§

impl Client

Source

pub fn update_project(&self) -> UpdateProjectFluentBuilder

Constructs a fluent builder for the UpdateProject operation.

Source§

impl Client

Source

pub fn update_space(&self) -> UpdateSpaceFluentBuilder

Constructs a fluent builder for the UpdateSpace operation.

Source§

impl Client

Source

pub fn update_training_job(&self) -> UpdateTrainingJobFluentBuilder

Constructs a fluent builder for the UpdateTrainingJob operation.

Source§

impl Client

Source

pub fn update_trial(&self) -> UpdateTrialFluentBuilder

Constructs a fluent builder for the UpdateTrial operation.

Source§

impl Client

Source

pub fn update_trial_component(&self) -> UpdateTrialComponentFluentBuilder

Constructs a fluent builder for the UpdateTrialComponent operation.

Source§

impl Client

Source

pub fn update_user_profile(&self) -> UpdateUserProfileFluentBuilder

Constructs a fluent builder for the UpdateUserProfile operation.

Source§

impl Client

Source

pub fn update_workforce(&self) -> UpdateWorkforceFluentBuilder

Constructs a fluent builder for the UpdateWorkforce operation.

Source§

impl Client

Source

pub fn update_workteam(&self) -> UpdateWorkteamFluentBuilder

Constructs a fluent builder for the UpdateWorkteam operation.

Source§

impl Client

Source

pub fn from_conf(conf: Config) -> Self

Creates a new client from the service Config.

§Panics

This method will panic in the following cases:

  • Retries or timeouts are enabled without a sleep_impl configured.
  • Identity caching is enabled without a sleep_impl and time_source configured.
  • No behavior_version is provided.

The panic message for each of these will have instructions on how to resolve them.

Source

pub fn config(&self) -> &Config

Returns the client’s configuration.

Source§

impl Client

Source

pub fn new(sdk_config: &SdkConfig) -> Self

Creates a new client from an SDK Config.

§Panics
  • This method will panic if the sdk_config is missing an async sleep implementation. If you experience this panic, set the sleep_impl on the Config passed into this function to fix it.
  • This method will panic if the sdk_config is missing an HTTP connector. If you experience this panic, set the http_connector on the Config passed into this function to fix it.
  • This method will panic if no BehaviorVersion is provided. If you experience this panic, set behavior_version on the Config or enable the behavior-version-latest Cargo feature.

Trait Implementations§

Source§

impl Clone for Client

Source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Client

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Waiters for Client

Source§

fn wait_until_endpoint_deleted(&self) -> EndpointDeletedFluentBuilder

Wait for endpoint_deleted
Source§

fn wait_until_endpoint_in_service(&self) -> EndpointInServiceFluentBuilder

Wait for endpoint_in_service
Source§

fn wait_until_image_created(&self) -> ImageCreatedFluentBuilder

Wait for image_created
Source§

fn wait_until_image_deleted(&self) -> ImageDeletedFluentBuilder

Wait for image_deleted
Source§

fn wait_until_image_updated(&self) -> ImageUpdatedFluentBuilder

Wait for image_updated
Source§

fn wait_until_image_version_created(&self) -> ImageVersionCreatedFluentBuilder

Wait for image_version_created
Source§

fn wait_until_image_version_deleted(&self) -> ImageVersionDeletedFluentBuilder

Wait for image_version_deleted
Source§

fn wait_until_notebook_instance_deleted( &self, ) -> NotebookInstanceDeletedFluentBuilder

Wait for notebook_instance_deleted
Source§

fn wait_until_notebook_instance_in_service( &self, ) -> NotebookInstanceInServiceFluentBuilder

Wait for notebook_instance_in_service
Source§

fn wait_until_notebook_instance_stopped( &self, ) -> NotebookInstanceStoppedFluentBuilder

Wait for notebook_instance_stopped
Source§

fn wait_until_processing_job_completed_or_stopped( &self, ) -> ProcessingJobCompletedOrStoppedFluentBuilder

Wait for processing_job_completed_or_stopped
Source§

fn wait_until_training_job_completed_or_stopped( &self, ) -> TrainingJobCompletedOrStoppedFluentBuilder

Wait for training_job_completed_or_stopped
Source§

fn wait_until_transform_job_completed_or_stopped( &self, ) -> TransformJobCompletedOrStoppedFluentBuilder

Wait for transform_job_completed_or_stopped

Auto Trait Implementations§

§

impl Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

Source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
Source§

impl<T> Paint for T
where T: ?Sized,

Source§

fn fg(&self, value: Color) -> Painted<&T>

Returns a styled value derived from self with the foreground set to value.

This method should be used rarely. Instead, prefer to use color-specific builder methods like red() and green(), which have the same functionality but are pithier.

§Example

Set foreground color to white using fg():

use yansi::{Paint, Color};

painted.fg(Color::White);

Set foreground color to white using white().

use yansi::Paint;

painted.white();
Source§

fn primary(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Primary].

§Example
println!("{}", value.primary());
Source§

fn fixed(&self, color: u8) -> Painted<&T>

Returns self with the fg() set to [Color :: Fixed].

§Example
println!("{}", value.fixed(color));
Source§

fn rgb(&self, r: u8, g: u8, b: u8) -> Painted<&T>

Returns self with the fg() set to [Color :: Rgb].

§Example
println!("{}", value.rgb(r, g, b));
Source§

fn black(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Black].

§Example
println!("{}", value.black());
Source§

fn red(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Red].

§Example
println!("{}", value.red());
Source§

fn green(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Green].

§Example
println!("{}", value.green());
Source§

fn yellow(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Yellow].

§Example
println!("{}", value.yellow());
Source§

fn blue(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Blue].

§Example
println!("{}", value.blue());
Source§

fn magenta(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Magenta].

§Example
println!("{}", value.magenta());
Source§

fn cyan(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Cyan].

§Example
println!("{}", value.cyan());
Source§

fn white(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: White].

§Example
println!("{}", value.white());
Source§

fn bright_black(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightBlack].

§Example
println!("{}", value.bright_black());
Source§

fn bright_red(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightRed].

§Example
println!("{}", value.bright_red());
Source§

fn bright_green(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightGreen].

§Example
println!("{}", value.bright_green());
Source§

fn bright_yellow(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightYellow].

§Example
println!("{}", value.bright_yellow());
Source§

fn bright_blue(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightBlue].

§Example
println!("{}", value.bright_blue());
Source§

fn bright_magenta(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightMagenta].

§Example
println!("{}", value.bright_magenta());
Source§

fn bright_cyan(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightCyan].

§Example
println!("{}", value.bright_cyan());
Source§

fn bright_white(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightWhite].

§Example
println!("{}", value.bright_white());
Source§

fn bg(&self, value: Color) -> Painted<&T>

Returns a styled value derived from self with the background set to value.

This method should be used rarely. Instead, prefer to use color-specific builder methods like on_red() and on_green(), which have the same functionality but are pithier.

§Example

Set background color to red using fg():

use yansi::{Paint, Color};

painted.bg(Color::Red);

Set background color to red using on_red().

use yansi::Paint;

painted.on_red();
Source§

fn on_primary(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Primary].

§Example
println!("{}", value.on_primary());
Source§

fn on_fixed(&self, color: u8) -> Painted<&T>

Returns self with the bg() set to [Color :: Fixed].

§Example
println!("{}", value.on_fixed(color));
Source§

fn on_rgb(&self, r: u8, g: u8, b: u8) -> Painted<&T>

Returns self with the bg() set to [Color :: Rgb].

§Example
println!("{}", value.on_rgb(r, g, b));
Source§

fn on_black(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Black].

§Example
println!("{}", value.on_black());
Source§

fn on_red(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Red].

§Example
println!("{}", value.on_red());
Source§

fn on_green(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Green].

§Example
println!("{}", value.on_green());
Source§

fn on_yellow(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Yellow].

§Example
println!("{}", value.on_yellow());
Source§

fn on_blue(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Blue].

§Example
println!("{}", value.on_blue());
Source§

fn on_magenta(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Magenta].

§Example
println!("{}", value.on_magenta());
Source§

fn on_cyan(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Cyan].

§Example
println!("{}", value.on_cyan());
Source§

fn on_white(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: White].

§Example
println!("{}", value.on_white());
Source§

fn on_bright_black(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightBlack].

§Example
println!("{}", value.on_bright_black());
Source§

fn on_bright_red(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightRed].

§Example
println!("{}", value.on_bright_red());
Source§

fn on_bright_green(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightGreen].

§Example
println!("{}", value.on_bright_green());
Source§

fn on_bright_yellow(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightYellow].

§Example
println!("{}", value.on_bright_yellow());
Source§

fn on_bright_blue(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightBlue].

§Example
println!("{}", value.on_bright_blue());
Source§

fn on_bright_magenta(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightMagenta].

§Example
println!("{}", value.on_bright_magenta());
Source§

fn on_bright_cyan(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightCyan].

§Example
println!("{}", value.on_bright_cyan());
Source§

fn on_bright_white(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightWhite].

§Example
println!("{}", value.on_bright_white());
Source§

fn attr(&self, value: Attribute) -> Painted<&T>

Enables the styling Attribute value.

This method should be used rarely. Instead, prefer to use attribute-specific builder methods like bold() and underline(), which have the same functionality but are pithier.

§Example

Make text bold using attr():

use yansi::{Paint, Attribute};

painted.attr(Attribute::Bold);

Make text bold using using bold().

use yansi::Paint;

painted.bold();
Source§

fn bold(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Bold].

§Example
println!("{}", value.bold());
Source§

fn dim(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Dim].

§Example
println!("{}", value.dim());
Source§

fn italic(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Italic].

§Example
println!("{}", value.italic());
Source§

fn underline(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Underline].

§Example
println!("{}", value.underline());

Returns self with the attr() set to [Attribute :: Blink].

§Example
println!("{}", value.blink());

Returns self with the attr() set to [Attribute :: RapidBlink].

§Example
println!("{}", value.rapid_blink());
Source§

fn invert(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Invert].

§Example
println!("{}", value.invert());
Source§

fn conceal(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Conceal].

§Example
println!("{}", value.conceal());
Source§

fn strike(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Strike].

§Example
println!("{}", value.strike());
Source§

fn quirk(&self, value: Quirk) -> Painted<&T>

Enables the yansi Quirk value.

This method should be used rarely. Instead, prefer to use quirk-specific builder methods like mask() and wrap(), which have the same functionality but are pithier.

§Example

Enable wrapping using .quirk():

use yansi::{Paint, Quirk};

painted.quirk(Quirk::Wrap);

Enable wrapping using wrap().

use yansi::Paint;

painted.wrap();
Source§

fn mask(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Mask].

§Example
println!("{}", value.mask());
Source§

fn wrap(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Wrap].

§Example
println!("{}", value.wrap());
Source§

fn linger(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Linger].

§Example
println!("{}", value.linger());
Source§

fn clear(&self) -> Painted<&T>

👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear(). The clear() method will be removed in a future release.

Returns self with the quirk() set to [Quirk :: Clear].

§Example
println!("{}", value.clear());
Source§

fn resetting(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Resetting].

§Example
println!("{}", value.resetting());
Source§

fn bright(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Bright].

§Example
println!("{}", value.bright());
Source§

fn on_bright(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: OnBright].

§Example
println!("{}", value.on_bright());
Source§

fn whenever(&self, value: Condition) -> Painted<&T>

Conditionally enable styling based on whether the Condition value applies. Replaces any previous condition.

See the crate level docs for more details.

§Example

Enable styling painted only when both stdout and stderr are TTYs:

use yansi::{Paint, Condition};

painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);
Source§

fn new(self) -> Painted<Self>
where Self: Sized,

Create a new Painted with a default Style. Read more
Source§

fn paint<S>(&self, style: S) -> Painted<&Self>
where S: Into<Style>,

Apply a style wholesale to self. Any previous style is replaced. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,