Interface Application.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Application.Builder,Application>,SdkBuilder<Application.Builder,Application>,SdkPojo
- Enclosing class:
- Application
public static interface Application.Builder extends SdkPojo, CopyableBuilder<Application.Builder,Application>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Application.BuilderapplicationTag(Map<String,String> applicationTag)A key-value pair that identifies an associated resource.Application.Builderarn(String arn)The Amazon resource name (ARN) that specifies the application across services.Application.BuildercreationTime(Instant creationTime)The ISO-8601 formatted timestamp of the moment when the application was created.Application.Builderdescription(String description)The description of the application.Application.Builderid(String id)The identifier of the application.Application.BuilderlastUpdateTime(Instant lastUpdateTime)The ISO-8601 formatted timestamp of the moment when the application was last updated.Application.Buildername(String name)The name of the application.Application.Buildertags(Map<String,String> tags)Key-value pairs you can use to associate with the application.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
id
Application.Builder id(String id)
The identifier of the application.
- Parameters:
id- The identifier of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
Application.Builder arn(String arn)
The Amazon resource name (ARN) that specifies the application across services.
- Parameters:
arn- The Amazon resource name (ARN) that specifies the application across services.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Application.Builder name(String name)
The name of the application. The name must be unique in the region in which you are creating the application.
- Parameters:
name- The name of the application. The name must be unique in the region in which you are creating the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Application.Builder description(String description)
The description of the application.
- Parameters:
description- The description of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
Application.Builder creationTime(Instant creationTime)
The ISO-8601 formatted timestamp of the moment when the application was created.
- Parameters:
creationTime- The ISO-8601 formatted timestamp of the moment when the application was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdateTime
Application.Builder lastUpdateTime(Instant lastUpdateTime)
The ISO-8601 formatted timestamp of the moment when the application was last updated.
- Parameters:
lastUpdateTime- The ISO-8601 formatted timestamp of the moment when the application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
Application.Builder tags(Map<String,String> tags)
Key-value pairs you can use to associate with the application.
- Parameters:
tags- Key-value pairs you can use to associate with the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationTag
Application.Builder applicationTag(Map<String,String> applicationTag)
A key-value pair that identifies an associated resource.
- Parameters:
applicationTag- A key-value pair that identifies an associated resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-