Struct aws_sdk_securityhub::types::AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
source · #[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails {
pub container_port: Option<i32>,
pub host_port: Option<i32>,
pub protocol: Option<String>,
}
Expand description
A port mapping for the container.
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.container_port: Option<i32>
The port number on the container that is bound to the user-specified or automatically assigned host port.
host_port: Option<i32>
The port number on the container instance to reserve for the container.
protocol: Option<String>
The protocol used for the port mapping. The default is tcp
.
Implementations§
source§impl AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
source§impl AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
sourcepub fn builder(
) -> AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetailsBuilder
pub fn builder( ) -> AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetailsBuilder
Creates a new builder-style object to manufacture AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
.
Trait Implementations§
source§impl Clone for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl Clone for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
source§fn clone(&self) -> AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
fn clone(&self) -> AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
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 PartialEq for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl PartialEq for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
source§fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
) -> bool
fn eq( &self, other: &AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails ) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
Auto Trait Implementations§
impl RefUnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl Send for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl Sync for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl Unpin for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
impl UnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.