@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.560Z") @Stability(value=Stable) public interface CfnServiceProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.refactorspaces.*;
CfnServiceProps cfnServiceProps = CfnServiceProps.builder()
.applicationIdentifier("applicationIdentifier")
.environmentIdentifier("environmentIdentifier")
// the properties below are optional
.description("description")
.endpointType("endpointType")
.lambdaEndpoint(LambdaEndpointInputProperty.builder()
.arn("arn")
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.urlEndpoint(UrlEndpointInputProperty.builder()
.url("url")
// the properties below are optional
.healthUrl("healthUrl")
.build())
.vpcId("vpcId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnServiceProps.Builder
A builder for
CfnServiceProps |
static class |
CfnServiceProps.Jsii$Proxy
An implementation for
CfnServiceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnServiceProps.Builder |
builder() |
String |
getApplicationIdentifier()
The unique identifier of the application.
|
default String |
getDescription()
A description of the service.
|
default String |
getEndpointType()
The endpoint type of the service.
|
String |
getEnvironmentIdentifier()
The unique identifier of the environment.
|
default Object |
getLambdaEndpoint()
A summary of the configuration for the AWS Lambda endpoint type.
|
default String |
getName()
The name of the service.
|
default List<CfnTag> |
getTags()
The tags assigned to the service.
|
default Object |
getUrlEndpoint()
The summary of the configuration for the URL endpoint type.
|
default String |
getVpcId()
The ID of the virtual private cloud (VPC).
|
@Stability(value=Stable) @NotNull String getApplicationIdentifier()
@Stability(value=Stable) @NotNull String getEnvironmentIdentifier()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getEndpointType()
@Stability(value=Stable) @Nullable default Object getLambdaEndpoint()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getUrlEndpoint()
@Stability(value=Stable) @Nullable default String getVpcId()
@Stability(value=Stable) static CfnServiceProps.Builder builder()
CfnServiceProps.Builder of CfnServicePropsCopyright © 2022. All rights reserved.