#[non_exhaustive]pub struct CreateServiceInput { /* private fields */ }
Implementations§
source§impl 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
.
source§impl 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. When creating a route to a service, Refactor Spaces automatically resolves the address in the UrlEndpointInput
object URL when the Domain Name System (DNS) time-to-live (TTL) expires, or every 60 seconds for TTLs less than 60 seconds.
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§
source§impl Clone for CreateServiceInput
impl Clone for CreateServiceInput
source§fn clone(&self) -> CreateServiceInput
fn clone(&self) -> CreateServiceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateServiceInput
impl Debug for CreateServiceInput
source§impl PartialEq<CreateServiceInput> for CreateServiceInput
impl PartialEq<CreateServiceInput> for CreateServiceInput
source§fn eq(&self, other: &CreateServiceInput) -> bool
fn eq(&self, other: &CreateServiceInput) -> bool
self
and other
values to be equal, and is used
by ==
.