pub struct GetPartitionResult {
pub dns_suffix: Output<String>,
pub id: Output<String>,
pub partition: Output<String>,
pub reverse_dns_prefix: Output<String>,
}
Fields§
§dns_suffix: Output<String>
Base DNS domain name for the current partition (e.g., amazonaws.com
in AWS Commercial, amazonaws.com.cn
in AWS China).
id: Output<String>
Identifier of the current partition (e.g., aws
in AWS Commercial, aws-cn
in AWS China).
partition: Output<String>
Identifier of the current partition (e.g., aws
in AWS Commercial, aws-cn
in AWS China).
reverse_dns_prefix: Output<String>
Prefix of service names (e.g., com.amazonaws
in AWS Commercial, cn.com.amazonaws
in AWS China).
Auto Trait Implementations§
impl Freeze for GetPartitionResult
impl RefUnwindSafe for GetPartitionResult
impl Send for GetPartitionResult
impl Sync for GetPartitionResult
impl Unpin for GetPartitionResult
impl UnwindSafe for GetPartitionResult
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