#[non_exhaustive]pub struct CreateEndpointInput {
pub endpoint_name: Option<String>,
pub endpoint_config_name: Option<String>,
pub deployment_config: Option<DeploymentConfig>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.endpoint_name: Option<String>
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account. The name is case-insensitive in CreateEndpoint
, but the case is preserved and must be matched in InvokeEndpoint.
endpoint_config_name: Option<String>
The name of an endpoint configuration. For more information, see CreateEndpointConfig.
deployment_config: Option<DeploymentConfig>
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
Implementations§
source§impl CreateEndpointInput
impl CreateEndpointInput
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account. The name is case-insensitive in CreateEndpoint
, but the case is preserved and must be matched in InvokeEndpoint.
sourcepub fn endpoint_config_name(&self) -> Option<&str>
pub fn endpoint_config_name(&self) -> Option<&str>
The name of an endpoint configuration. For more information, see CreateEndpointConfig.
sourcepub fn deployment_config(&self) -> Option<&DeploymentConfig>
pub fn deployment_config(&self) -> Option<&DeploymentConfig>
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateEndpointInput
impl CreateEndpointInput
sourcepub fn builder() -> CreateEndpointInputBuilder
pub fn builder() -> CreateEndpointInputBuilder
Creates a new builder-style object to manufacture CreateEndpointInput
.
Trait Implementations§
source§impl Clone for CreateEndpointInput
impl Clone for CreateEndpointInput
source§fn clone(&self) -> CreateEndpointInput
fn clone(&self) -> CreateEndpointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateEndpointInput
impl Debug for CreateEndpointInput
source§impl PartialEq for CreateEndpointInput
impl PartialEq for CreateEndpointInput
source§fn eq(&self, other: &CreateEndpointInput) -> bool
fn eq(&self, other: &CreateEndpointInput) -> bool
self
and other
values to be equal, and is used
by ==
.