#[non_exhaustive]pub struct KinesisStreamConfigBuilder { /* private fields */ }
Expand description
A builder for KinesisStreamConfig
.
Implementations§
source§impl KinesisStreamConfigBuilder
impl KinesisStreamConfigBuilder
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.
For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.
This field is required.sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.
For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.
For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide.
sourcepub fn stream_arn(self, input: impl Into<String>) -> Self
pub fn stream_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
This field is required.sourcepub fn set_stream_arn(self, input: Option<String>) -> Self
pub fn set_stream_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
sourcepub fn get_stream_arn(&self) -> &Option<String>
pub fn get_stream_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
sourcepub fn build(self) -> Result<KinesisStreamConfig, BuildError>
pub fn build(self) -> Result<KinesisStreamConfig, BuildError>
Consumes the builder and constructs a KinesisStreamConfig
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for KinesisStreamConfigBuilder
impl Clone for KinesisStreamConfigBuilder
source§fn clone(&self) -> KinesisStreamConfigBuilder
fn clone(&self) -> KinesisStreamConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for KinesisStreamConfigBuilder
impl Debug for KinesisStreamConfigBuilder
source§impl Default for KinesisStreamConfigBuilder
impl Default for KinesisStreamConfigBuilder
source§fn default() -> KinesisStreamConfigBuilder
fn default() -> KinesisStreamConfigBuilder
source§impl PartialEq for KinesisStreamConfigBuilder
impl PartialEq for KinesisStreamConfigBuilder
source§fn eq(&self, other: &KinesisStreamConfigBuilder) -> bool
fn eq(&self, other: &KinesisStreamConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for KinesisStreamConfigBuilder
Auto Trait Implementations§
impl Freeze for KinesisStreamConfigBuilder
impl RefUnwindSafe for KinesisStreamConfigBuilder
impl Send for KinesisStreamConfigBuilder
impl Sync for KinesisStreamConfigBuilder
impl Unpin for KinesisStreamConfigBuilder
impl UnwindSafe for KinesisStreamConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more