Interface ImportDatasetRequest.Builder

    • Method Detail

      • sourceDatasetArn

        ImportDatasetRequest.Builder sourceDatasetArn​(String sourceDatasetArn)

        The Amazon Resource Name (ARN) of the dataset to import.

        Parameters:
        sourceDatasetArn - The Amazon Resource Name (ARN) of the dataset to import.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • datasetName

        ImportDatasetRequest.Builder datasetName​(String datasetName)

        The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the source dataset.

        Parameters:
        datasetName - The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the source dataset.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clientToken

        ImportDatasetRequest.Builder clientToken​(String clientToken)

        A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one.

        Parameters:
        clientToken - A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • serverSideKmsKeyId

        ImportDatasetRequest.Builder serverSideKmsKeyId​(String serverSideKmsKeyId)

        Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.

        Parameters:
        serverSideKmsKeyId - Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImportDatasetRequest.Builder tags​(Collection<Tag> tags)

        Any tags associated with the dataset to be created.

        Parameters:
        tags - Any tags associated with the dataset to be created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImportDatasetRequest.Builder tags​(Tag... tags)

        Any tags associated with the dataset to be created.

        Parameters:
        tags - Any tags associated with the dataset to be created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImportDatasetRequest.Builder tags​(Consumer<Tag.Builder>... tags)

        Any tags associated with the dataset to be created.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)