#[non_exhaustive]pub struct GetTileInputBuilder { /* private fields */ }
Expand description
A builder for GetTileInput
.
Implementations§
source§impl GetTileInputBuilder
impl GetTileInputBuilder
sourcepub fn image_assets(self, input: impl Into<String>) -> Self
pub fn image_assets(self, input: impl Into<String>) -> Self
Appends an item to image_assets
.
To override the contents of this collection use set_image_assets
.
The particular assets or bands to tile.
sourcepub fn set_image_assets(self, input: Option<Vec<String>>) -> Self
pub fn set_image_assets(self, input: Option<Vec<String>>) -> Self
The particular assets or bands to tile.
sourcepub fn get_image_assets(&self) -> &Option<Vec<String>>
pub fn get_image_assets(&self) -> &Option<Vec<String>>
The particular assets or bands to tile.
sourcepub fn target(self, input: TargetOptions) -> Self
pub fn target(self, input: TargetOptions) -> Self
Determines what part of the Earth Observation job to tile. 'INPUT' or 'OUTPUT' are the valid options.
This field is required.sourcepub fn set_target(self, input: Option<TargetOptions>) -> Self
pub fn set_target(self, input: Option<TargetOptions>) -> Self
Determines what part of the Earth Observation job to tile. 'INPUT' or 'OUTPUT' are the valid options.
sourcepub fn get_target(&self) -> &Option<TargetOptions>
pub fn get_target(&self) -> &Option<TargetOptions>
Determines what part of the Earth Observation job to tile. 'INPUT' or 'OUTPUT' are the valid options.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the tile operation.
This field is required.sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the tile operation.
sourcepub fn image_mask(self, input: bool) -> Self
pub fn image_mask(self, input: bool) -> Self
Determines whether or not to return a valid data mask.
sourcepub fn set_image_mask(self, input: Option<bool>) -> Self
pub fn set_image_mask(self, input: Option<bool>) -> Self
Determines whether or not to return a valid data mask.
sourcepub fn get_image_mask(&self) -> &Option<bool>
pub fn get_image_mask(&self) -> &Option<bool>
Determines whether or not to return a valid data mask.
sourcepub fn output_format(self, input: impl Into<String>) -> Self
pub fn output_format(self, input: impl Into<String>) -> Self
The data format of the output tile. The formats include .npy, .png and .jpg.
sourcepub fn set_output_format(self, input: Option<String>) -> Self
pub fn set_output_format(self, input: Option<String>) -> Self
The data format of the output tile. The formats include .npy, .png and .jpg.
sourcepub fn get_output_format(&self) -> &Option<String>
pub fn get_output_format(&self) -> &Option<String>
The data format of the output tile. The formats include .npy, .png and .jpg.
sourcepub fn time_range_filter(self, input: impl Into<String>) -> Self
pub fn time_range_filter(self, input: impl Into<String>) -> Self
Time range filter applied to imagery to find the images to tile.
sourcepub fn set_time_range_filter(self, input: Option<String>) -> Self
pub fn set_time_range_filter(self, input: Option<String>) -> Self
Time range filter applied to imagery to find the images to tile.
sourcepub fn get_time_range_filter(&self) -> &Option<String>
pub fn get_time_range_filter(&self) -> &Option<String>
Time range filter applied to imagery to find the images to tile.
sourcepub fn property_filters(self, input: impl Into<String>) -> Self
pub fn property_filters(self, input: impl Into<String>) -> Self
Property filters for the imagery to tile.
sourcepub fn set_property_filters(self, input: Option<String>) -> Self
pub fn set_property_filters(self, input: Option<String>) -> Self
Property filters for the imagery to tile.
sourcepub fn get_property_filters(&self) -> &Option<String>
pub fn get_property_filters(&self) -> &Option<String>
Property filters for the imagery to tile.
sourcepub fn output_data_type(self, input: OutputType) -> Self
pub fn output_data_type(self, input: OutputType) -> Self
The output data type of the tile operation.
sourcepub fn set_output_data_type(self, input: Option<OutputType>) -> Self
pub fn set_output_data_type(self, input: Option<OutputType>) -> Self
The output data type of the tile operation.
sourcepub fn get_output_data_type(&self) -> &Option<OutputType>
pub fn get_output_data_type(&self) -> &Option<OutputType>
The output data type of the tile operation.
sourcepub fn execution_role_arn(self, input: impl Into<String>) -> Self
pub fn execution_role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the IAM role that you specify.
sourcepub fn set_execution_role_arn(self, input: Option<String>) -> Self
pub fn set_execution_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the IAM role that you specify.
sourcepub fn get_execution_role_arn(&self) -> &Option<String>
pub fn get_execution_role_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the IAM role that you specify.
sourcepub fn build(self) -> Result<GetTileInput, BuildError>
pub fn build(self) -> Result<GetTileInput, BuildError>
Consumes the builder and constructs a GetTileInput
.
source§impl GetTileInputBuilder
impl GetTileInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetTileOutput, SdkError<GetTileError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetTileOutput, SdkError<GetTileError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetTileInputBuilder
impl Clone for GetTileInputBuilder
source§fn clone(&self) -> GetTileInputBuilder
fn clone(&self) -> GetTileInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTileInputBuilder
impl Debug for GetTileInputBuilder
source§impl Default for GetTileInputBuilder
impl Default for GetTileInputBuilder
source§fn default() -> GetTileInputBuilder
fn default() -> GetTileInputBuilder
source§impl PartialEq for GetTileInputBuilder
impl PartialEq for GetTileInputBuilder
source§fn eq(&self, other: &GetTileInputBuilder) -> bool
fn eq(&self, other: &GetTileInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.