JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.sagemaker.model

Class CreateTrialComponentRequest

    • Constructor Detail

      • CreateTrialComponentRequest

        public CreateTrialComponentRequest()
    • Method Detail

      • setTrialComponentName

        public void setTrialComponentName(String trialComponentName)

        The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.

        Parameters:
        trialComponentName - The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.
      • getTrialComponentName

        public String getTrialComponentName()

        The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.

        Returns:
        The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.
      • withTrialComponentName

        public CreateTrialComponentRequest withTrialComponentName(String trialComponentName)

        The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.

        Parameters:
        trialComponentName - The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setDisplayName

        public void setDisplayName(String displayName)

        The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.

        Parameters:
        displayName - The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.
      • getDisplayName

        public String getDisplayName()

        The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.

        Returns:
        The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.
      • withDisplayName

        public CreateTrialComponentRequest withDisplayName(String displayName)

        The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.

        Parameters:
        displayName - The name of the component as displayed. The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setStatus

        public void setStatus(TrialComponentStatus status)

        The status of the component. States include:

        • InProgress

        • Completed

        • Failed

        Parameters:
        status - The status of the component. States include:

        • InProgress

        • Completed

        • Failed

      • getStatus

        public TrialComponentStatus getStatus()

        The status of the component. States include:

        • InProgress

        • Completed

        • Failed

        Returns:
        The status of the component. States include:

        • InProgress

        • Completed

        • Failed

      • withStatus

        public CreateTrialComponentRequest withStatus(TrialComponentStatus status)

        The status of the component. States include:

        • InProgress

        • Completed

        • Failed

        Parameters:
        status - The status of the component. States include:

        • InProgress

        • Completed

        • Failed

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setStartTime

        public void setStartTime(Date startTime)

        When the component started.

        Parameters:
        startTime - When the component started.
      • getStartTime

        public Date getStartTime()

        When the component started.

        Returns:
        When the component started.
      • withStartTime

        public CreateTrialComponentRequest withStartTime(Date startTime)

        When the component started.

        Parameters:
        startTime - When the component started.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setEndTime

        public void setEndTime(Date endTime)

        When the component ended.

        Parameters:
        endTime - When the component ended.
      • getEndTime

        public Date getEndTime()

        When the component ended.

        Returns:
        When the component ended.
      • withEndTime

        public CreateTrialComponentRequest withEndTime(Date endTime)

        When the component ended.

        Parameters:
        endTime - When the component ended.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setParameters

        public void setParameters(Map<String,TrialComponentParameterValue> parameters)

        The hyperparameters for the component.

        Parameters:
        parameters - The hyperparameters for the component.
      • clearParametersEntries

        public CreateTrialComponentRequest clearParametersEntries()
        Removes all the entries added into Parameters.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • getInputArtifacts

        public Map<String,TrialComponentArtifact> getInputArtifacts()

        The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.

        Returns:
        The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.
      • setInputArtifacts

        public void setInputArtifacts(Map<String,TrialComponentArtifact> inputArtifacts)

        The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.

        Parameters:
        inputArtifacts - The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.
      • withInputArtifacts

        public CreateTrialComponentRequest withInputArtifacts(Map<String,TrialComponentArtifact> inputArtifacts)

        The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.

        Parameters:
        inputArtifacts - The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clearInputArtifactsEntries

        public CreateTrialComponentRequest clearInputArtifactsEntries()
        Removes all the entries added into InputArtifacts.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • getOutputArtifacts

        public Map<String,TrialComponentArtifact> getOutputArtifacts()

        The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.

        Returns:
        The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.
      • setOutputArtifacts

        public void setOutputArtifacts(Map<String,TrialComponentArtifact> outputArtifacts)

        The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.

        Parameters:
        outputArtifacts - The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.
      • withOutputArtifacts

        public CreateTrialComponentRequest withOutputArtifacts(Map<String,TrialComponentArtifact> outputArtifacts)

        The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.

        Parameters:
        outputArtifacts - The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clearOutputArtifactsEntries

        public CreateTrialComponentRequest clearOutputArtifactsEntries()
        Removes all the entries added into OutputArtifacts.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setMetadataProperties

        public void setMetadataProperties(MetadataProperties metadataProperties)
        Parameters:
        metadataProperties -
      • withMetadataProperties

        public CreateTrialComponentRequest withMetadataProperties(MetadataProperties metadataProperties)
        Parameters:
        metadataProperties -
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • getTags

        public List<Tag> getTags()

        A list of tags to associate with the component. You can use Search API to search on the tags.

        Returns:
        A list of tags to associate with the component. You can use Search API to search on the tags.
      • setTags

        public void setTags(Collection<Tag> tags)

        A list of tags to associate with the component. You can use Search API to search on the tags.

        Parameters:
        tags - A list of tags to associate with the component. You can use Search API to search on the tags.
      • withTags

        public CreateTrialComponentRequest withTags(Tag... tags)

        A list of tags to associate with the component. You can use Search API to search on the tags.

        NOTE: This method appends the values to the existing list (if any). Use setTags(java.util.Collection) or withTags(java.util.Collection) if you want to override the existing values.

        Parameters:
        tags - A list of tags to associate with the component. You can use Search API to search on the tags.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • withTags

        public CreateTrialComponentRequest withTags(Collection<Tag> tags)

        A list of tags to associate with the component. You can use Search API to search on the tags.

        Parameters:
        tags - A list of tags to associate with the component. You can use Search API to search on the tags.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • toString

        public String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
        Returns:
        A string representation of this object.
        See Also:
        Object.toString()
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /