pub struct Builder { /* private fields */ }
Expand description
A builder for ResultReuseByAgeConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
True if previous query results can be reused when the query is run; otherwise, false. The default is false.
sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
True if previous query results can be reused when the query is run; otherwise, false. The default is false.
sourcepub fn max_age_in_minutes(self, input: i32) -> Self
pub fn max_age_in_minutes(self, input: i32) -> Self
Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.
sourcepub fn set_max_age_in_minutes(self, input: Option<i32>) -> Self
pub fn set_max_age_in_minutes(self, input: Option<i32>) -> Self
Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.
sourcepub fn build(self) -> ResultReuseByAgeConfiguration
pub fn build(self) -> ResultReuseByAgeConfiguration
Consumes the builder and constructs a ResultReuseByAgeConfiguration
.