Struct aws_sdk_directconnect::operation::describe_interconnect_loa::DescribeInterconnectLoaInput
source · #[non_exhaustive]pub struct DescribeInterconnectLoaInput {
pub interconnect_id: Option<String>,
pub provider_name: Option<String>,
pub loa_content_type: Option<LoaContentType>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.interconnect_id: Option<String>The ID of the interconnect.
provider_name: Option<String>The name of the service provider who establishes connectivity on your behalf. If you supply this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.
loa_content_type: Option<LoaContentType>The standard media type for the LOA-CFA document. The only supported value is application/pdf.
Implementations§
source§impl DescribeInterconnectLoaInput
impl DescribeInterconnectLoaInput
sourcepub fn interconnect_id(&self) -> Option<&str>
pub fn interconnect_id(&self) -> Option<&str>
The ID of the interconnect.
sourcepub fn provider_name(&self) -> Option<&str>
pub fn provider_name(&self) -> Option<&str>
The name of the service provider who establishes connectivity on your behalf. If you supply this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.
sourcepub fn loa_content_type(&self) -> Option<&LoaContentType>
pub fn loa_content_type(&self) -> Option<&LoaContentType>
The standard media type for the LOA-CFA document. The only supported value is application/pdf.
source§impl DescribeInterconnectLoaInput
impl DescribeInterconnectLoaInput
sourcepub fn builder() -> DescribeInterconnectLoaInputBuilder
pub fn builder() -> DescribeInterconnectLoaInputBuilder
Creates a new builder-style object to manufacture DescribeInterconnectLoaInput.
Trait Implementations§
source§impl Clone for DescribeInterconnectLoaInput
impl Clone for DescribeInterconnectLoaInput
source§fn clone(&self) -> DescribeInterconnectLoaInput
fn clone(&self) -> DescribeInterconnectLoaInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DescribeInterconnectLoaInput
impl Debug for DescribeInterconnectLoaInput
source§impl PartialEq<DescribeInterconnectLoaInput> for DescribeInterconnectLoaInput
impl PartialEq<DescribeInterconnectLoaInput> for DescribeInterconnectLoaInput
source§fn eq(&self, other: &DescribeInterconnectLoaInput) -> bool
fn eq(&self, other: &DescribeInterconnectLoaInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeInterconnectLoaInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeInterconnectLoaInput
impl Send for DescribeInterconnectLoaInput
impl Sync for DescribeInterconnectLoaInput
impl Unpin for DescribeInterconnectLoaInput
impl UnwindSafe for DescribeInterconnectLoaInput
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