pub struct AccountQueuePropertiesResult {
pub cors_rules: Output<Option<Vec<AccountQueuePropertiesCorsRule>>>,
pub hour_metrics: Output<AccountQueuePropertiesHourMetrics>,
pub logging: Output<AccountQueuePropertiesLogging>,
pub minute_metrics: Output<AccountQueuePropertiesMinuteMetrics>,
pub storage_account_id: Output<String>,
}
Fields§
§cors_rules: Output<Option<Vec<AccountQueuePropertiesCorsRule>>>
A cors_rule
block as defined above.
hour_metrics: Output<AccountQueuePropertiesHourMetrics>
A hour_metrics
block as defined below.
NOTE: At least one of
cors_rule
,logging
,minute_metrics
, orhour_metrics
must be specified.
logging: Output<AccountQueuePropertiesLogging>
A logging
block as defined below.
minute_metrics: Output<AccountQueuePropertiesMinuteMetrics>
A minute_metrics
block as defined below.
storage_account_id: Output<String>
The ID of the Storage Account to set Queue Properties on. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl Freeze for AccountQueuePropertiesResult
impl RefUnwindSafe for AccountQueuePropertiesResult
impl Send for AccountQueuePropertiesResult
impl Sync for AccountQueuePropertiesResult
impl Unpin for AccountQueuePropertiesResult
impl UnwindSafe for AccountQueuePropertiesResult
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
Mutably borrows from an owned value. Read more