Struct aws_sdk_firehose::input::ListDeliveryStreamsInput [−][src]
#[non_exhaustive]pub struct ListDeliveryStreamsInput {
pub limit: Option<i32>,
pub delivery_stream_type: Option<DeliveryStreamType>,
pub exclusive_start_delivery_stream_name: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.limit: Option<i32>The maximum number of delivery streams to list. The default value is 10.
delivery_stream_type: Option<DeliveryStreamType>The delivery stream type. This can be one of the following values:
-
DirectPut: Provider applications access the delivery stream directly. -
KinesisStreamAsSource: The delivery stream uses a Kinesis data stream as a source.
This parameter is optional. If this parameter is omitted, delivery streams of all types are returned.
exclusive_start_delivery_stream_name: Option<String>The list of delivery streams returned by this call to
ListDeliveryStreams will start with the delivery stream whose name comes
alphabetically immediately after the name you specify in
ExclusiveStartDeliveryStreamName.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeliveryStreams, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeliveryStreams, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDeliveryStreams>
Creates a new builder-style object to manufacture ListDeliveryStreamsInput
The maximum number of delivery streams to list. The default value is 10.
The delivery stream type. This can be one of the following values:
-
DirectPut: Provider applications access the delivery stream directly. -
KinesisStreamAsSource: The delivery stream uses a Kinesis data stream as a source.
This parameter is optional. If this parameter is omitted, delivery streams of all types are returned.
The list of delivery streams returned by this call to
ListDeliveryStreams will start with the delivery stream whose name comes
alphabetically immediately after the name you specify in
ExclusiveStartDeliveryStreamName.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ListDeliveryStreamsInput
impl Send for ListDeliveryStreamsInput
impl Sync for ListDeliveryStreamsInput
impl Unpin for ListDeliveryStreamsInput
impl UnwindSafe for ListDeliveryStreamsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more