[][src]Struct rusoto_ssm::LoggingInfo

pub struct LoggingInfo {
    pub s3_bucket_name: String,
    pub s3_key_prefix: Option<String>,
    pub s3_region: String,
}

Information about an S3 bucket to write instance-level logs to.

LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.

Fields

s3_bucket_name: String

The name of an S3 bucket where execution logs are stored .

s3_key_prefix: Option<String>

(Optional) The S3 bucket subfolder.

s3_region: String

The Region where the S3 bucket is located.

Trait Implementations

impl Clone for LoggingInfo[src]

impl Debug for LoggingInfo[src]

impl Default for LoggingInfo[src]

impl<'de> Deserialize<'de> for LoggingInfo[src]

impl PartialEq<LoggingInfo> for LoggingInfo[src]

impl Serialize for LoggingInfo[src]

impl StructuralPartialEq for LoggingInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.