Interface ApplicationInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationInfo.Builder,ApplicationInfo>,SdkBuilder<ApplicationInfo.Builder,ApplicationInfo>,SdkPojo
- Enclosing class:
- ApplicationInfo
public static interface ApplicationInfo.Builder extends SdkPojo, CopyableBuilder<ApplicationInfo.Builder,ApplicationInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationInfo.BuilderapplicationId(String applicationId)The application ID.ApplicationInfo.BuilderapplicationName(String applicationName)The application name.ApplicationInfo.BuildercomputePlatform(String computePlatform)The destination platform type for deployment of the application (LambdaorServer).ApplicationInfo.BuildercomputePlatform(ComputePlatform computePlatform)The destination platform type for deployment of the application (LambdaorServer).ApplicationInfo.BuildercreateTime(Instant createTime)The time at which the application was created.ApplicationInfo.BuildergitHubAccountName(String gitHubAccountName)The name for a connection to a GitHub account.ApplicationInfo.BuilderlinkedToGitHub(Boolean linkedToGitHub)True if the user has authenticated with GitHub for the specified 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
applicationId
ApplicationInfo.Builder applicationId(String applicationId)
The application ID.
- Parameters:
applicationId- The application ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationName
ApplicationInfo.Builder applicationName(String applicationName)
The application name.
- Parameters:
applicationName- The application name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createTime
ApplicationInfo.Builder createTime(Instant createTime)
The time at which the application was created.
- Parameters:
createTime- The time at which the application was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
linkedToGitHub
ApplicationInfo.Builder linkedToGitHub(Boolean linkedToGitHub)
True if the user has authenticated with GitHub for the specified application. Otherwise, false.
- Parameters:
linkedToGitHub- True if the user has authenticated with GitHub for the specified application. Otherwise, false.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gitHubAccountName
ApplicationInfo.Builder gitHubAccountName(String gitHubAccountName)
The name for a connection to a GitHub account.
- Parameters:
gitHubAccountName- The name for a connection to a GitHub account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computePlatform
ApplicationInfo.Builder computePlatform(String computePlatform)
The destination platform type for deployment of the application (
LambdaorServer).- Parameters:
computePlatform- The destination platform type for deployment of the application (LambdaorServer).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComputePlatform,ComputePlatform
-
computePlatform
ApplicationInfo.Builder computePlatform(ComputePlatform computePlatform)
The destination platform type for deployment of the application (
LambdaorServer).- Parameters:
computePlatform- The destination platform type for deployment of the application (LambdaorServer).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComputePlatform,ComputePlatform
-
-