#[non_exhaustive]pub struct CreateServiceInput { /* private fields */ }Implementations
sourceimpl CreateServiceInput
impl CreateServiceInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateService, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateService, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateService>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateServiceInput.
sourceimpl CreateServiceInput
impl CreateServiceInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the service.
sourcepub fn environment_identifier(&self) -> Option<&str>
pub fn environment_identifier(&self) -> Option<&str>
The ID of the environment in which the service is created.
sourcepub fn application_identifier(&self) -> Option<&str>
pub fn application_identifier(&self) -> Option<&str>
The ID of the application which the service is created.
sourcepub fn endpoint_type(&self) -> Option<&ServiceEndpointType>
pub fn endpoint_type(&self) -> Option<&ServiceEndpointType>
The type of endpoint to use for the service. The type can be a URL in a VPC or an Lambda function.
sourcepub fn url_endpoint(&self) -> Option<&UrlEndpointInput>
pub fn url_endpoint(&self) -> Option<&UrlEndpointInput>
The configuration for the URL endpoint type.
sourcepub fn lambda_endpoint(&self) -> Option<&LambdaEndpointInput>
pub fn lambda_endpoint(&self) -> Option<&LambdaEndpointInput>
The configuration for the Lambda endpoint type.
The tags to assign to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Trait Implementations
sourceimpl Clone for CreateServiceInput
impl Clone for CreateServiceInput
sourcefn clone(&self) -> CreateServiceInput
fn clone(&self) -> CreateServiceInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateServiceInput
impl Debug for CreateServiceInput
sourceimpl PartialEq<CreateServiceInput> for CreateServiceInput
impl PartialEq<CreateServiceInput> for CreateServiceInput
sourcefn eq(&self, other: &CreateServiceInput) -> bool
fn eq(&self, other: &CreateServiceInput) -> bool
impl StructuralPartialEq for CreateServiceInput
Auto Trait Implementations
impl RefUnwindSafe for CreateServiceInput
impl Send for CreateServiceInput
impl Sync for CreateServiceInput
impl Unpin for CreateServiceInput
impl UnwindSafe for CreateServiceInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more