Interface CreateExportRequest.Builder

    • Method Detail

      • export

        CreateExportRequest.Builder export​(Export export)

        The details of the export, including data query, name, description, and destination configuration.

        Parameters:
        export - The details of the export, including data query, name, description, and destination configuration.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • resourceTags

        CreateExportRequest.Builder resourceTags​(Collection<ResourceTag> resourceTags)

        An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.

        Parameters:
        resourceTags - An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • resourceTags

        CreateExportRequest.Builder resourceTags​(ResourceTag... resourceTags)

        An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.

        Parameters:
        resourceTags - An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • resourceTags

        CreateExportRequest.Builder resourceTags​(Consumer<ResourceTag.Builder>... resourceTags)

        An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.

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

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

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