Interface ServiceAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ServiceAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:18.743Z")
@Stability(Experimental)
public interface ServiceAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for the App Runner Service.
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.apprunner.alpha.*; ServiceAttributes serviceAttributes = ServiceAttributes.builder() .serviceArn("serviceArn") .serviceName("serviceName") .serviceStatus("serviceStatus") .serviceUrl("serviceUrl") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forServiceAttributes
static final class
An implementation forServiceAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceAttributes.Builder
builder()
(experimental) The ARN of the service.(experimental) The name of the service.(experimental) The status of the service.(experimental) The URL of the service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServiceArn
(experimental) The ARN of the service. -
getServiceName
(experimental) The name of the service. -
getServiceStatus
(experimental) The status of the service. -
getServiceUrl
(experimental) The URL of the service. -
builder
- Returns:
- a
ServiceAttributes.Builder
ofServiceAttributes
-