Struct aws_sdk_config::model::DeliveryChannel
source · #[non_exhaustive]pub struct DeliveryChannel { /* private fields */ }Expand description
The channel through which Config delivers notifications and updated configuration states.
Implementations§
source§impl DeliveryChannel
impl DeliveryChannel
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the delivery channel. By default, Config assigns the name "default" when creating the delivery channel. To change the delivery channel name, you must use the DeleteDeliveryChannel action to delete your current delivery channel, and then you must use the PutDeliveryChannel command to create a delivery channel that has the desired name.
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
The name of the Amazon S3 bucket to which Config delivers configuration snapshots and configuration history files.
If you specify a bucket that belongs to another Amazon Web Services account, that bucket must have policies that grant access permissions to Config. For more information, see Permissions for the Amazon S3 Bucket in the Config Developer Guide.
sourcepub fn s3_key_prefix(&self) -> Option<&str>
pub fn s3_key_prefix(&self) -> Option<&str>
The prefix for the specified Amazon S3 bucket.
sourcepub fn s3_kms_key_arn(&self) -> Option<&str>
pub fn s3_kms_key_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Key Management Service (KMS ) KMS key (KMS key) used to encrypt objects delivered by Config. Must belong to the same Region as the destination S3 bucket.
sourcepub fn sns_topic_arn(&self) -> Option<&str>
pub fn sns_topic_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon SNS topic to which Config sends notifications about configuration changes.
If you choose a topic from another account, the topic must have policies that grant access permissions to Config. For more information, see Permissions for the Amazon SNS Topic in the Config Developer Guide.
sourcepub fn config_snapshot_delivery_properties(
&self
) -> Option<&ConfigSnapshotDeliveryProperties>
pub fn config_snapshot_delivery_properties(
&self
) -> Option<&ConfigSnapshotDeliveryProperties>
The options for how often Config delivers configuration snapshots to the Amazon S3 bucket.
source§impl DeliveryChannel
impl DeliveryChannel
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeliveryChannel.
Trait Implementations§
source§impl Clone for DeliveryChannel
impl Clone for DeliveryChannel
source§fn clone(&self) -> DeliveryChannel
fn clone(&self) -> DeliveryChannel
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more