#[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 ==
.