pub struct GetTileFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetTile
.
Gets a web mercator tile for the given Earth Observation job.
Implementations§
source§impl GetTileFluentBuilder
impl GetTileFluentBuilder
sourcepub fn as_input(&self) -> &GetTileInputBuilder
pub fn as_input(&self) -> &GetTileInputBuilder
Access the GetTile as a reference.
sourcepub async fn send(
self
) -> Result<GetTileOutput, SdkError<GetTileError, HttpResponse>>
pub async fn send( self ) -> Result<GetTileOutput, SdkError<GetTileError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<GetTileOutput, GetTileError, Self>
pub fn customize( self ) -> CustomizableOperation<GetTileOutput, GetTileError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn image_assets(self, input: impl Into<String>) -> Self
pub fn image_assets(self, input: impl Into<String>) -> Self
Appends an item to ImageAssets
.
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.
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.
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.
Trait Implementations§
source§impl Clone for GetTileFluentBuilder
impl Clone for GetTileFluentBuilder
source§fn clone(&self) -> GetTileFluentBuilder
fn clone(&self) -> GetTileFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more