Struct aws_sdk_evidently::operation::list_segment_references::builders::ListSegmentReferencesInputBuilder
source · #[non_exhaustive]pub struct ListSegmentReferencesInputBuilder { /* private fields */ }Expand description
A builder for ListSegmentReferencesInput.
Implementations§
source§impl ListSegmentReferencesInputBuilder
impl ListSegmentReferencesInputBuilder
sourcepub fn segment(self, input: impl Into<String>) -> Self
pub fn segment(self, input: impl Into<String>) -> Self
The ARN of the segment that you want to view information for.
This field is required.sourcepub fn set_segment(self, input: Option<String>) -> Self
pub fn set_segment(self, input: Option<String>) -> Self
The ARN of the segment that you want to view information for.
sourcepub fn get_segment(&self) -> &Option<String>
pub fn get_segment(&self) -> &Option<String>
The ARN of the segment that you want to view information for.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to include in the response. If you omit this, the default of 50 is used.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to include in the response. If you omit this, the default of 50 is used.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to include in the response. If you omit this, the default of 50 is used.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use when requesting the next set of results. You received this token from a previous ListSegmentReferences operation.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use when requesting the next set of results. You received this token from a previous ListSegmentReferences operation.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use when requesting the next set of results. You received this token from a previous ListSegmentReferences operation.
sourcepub fn type(self, input: SegmentReferenceResourceType) -> Self
pub fn type(self, input: SegmentReferenceResourceType) -> Self
Specifies whether to return information about launches or experiments that use this segment.
This field is required.sourcepub fn set_type(self, input: Option<SegmentReferenceResourceType>) -> Self
pub fn set_type(self, input: Option<SegmentReferenceResourceType>) -> Self
Specifies whether to return information about launches or experiments that use this segment.
sourcepub fn get_type(&self) -> &Option<SegmentReferenceResourceType>
pub fn get_type(&self) -> &Option<SegmentReferenceResourceType>
Specifies whether to return information about launches or experiments that use this segment.
sourcepub fn build(self) -> Result<ListSegmentReferencesInput, BuildError>
pub fn build(self) -> Result<ListSegmentReferencesInput, BuildError>
Consumes the builder and constructs a ListSegmentReferencesInput.
source§impl ListSegmentReferencesInputBuilder
impl ListSegmentReferencesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListSegmentReferencesOutput, SdkError<ListSegmentReferencesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListSegmentReferencesOutput, SdkError<ListSegmentReferencesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListSegmentReferencesInputBuilder
impl Clone for ListSegmentReferencesInputBuilder
source§fn clone(&self) -> ListSegmentReferencesInputBuilder
fn clone(&self) -> ListSegmentReferencesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListSegmentReferencesInputBuilder
impl Default for ListSegmentReferencesInputBuilder
source§fn default() -> ListSegmentReferencesInputBuilder
fn default() -> ListSegmentReferencesInputBuilder
source§impl PartialEq for ListSegmentReferencesInputBuilder
impl PartialEq for ListSegmentReferencesInputBuilder
source§fn eq(&self, other: &ListSegmentReferencesInputBuilder) -> bool
fn eq(&self, other: &ListSegmentReferencesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.