Interface ConnectionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionSummary.Builder,ConnectionSummary>,SdkBuilder<ConnectionSummary.Builder,ConnectionSummary>,SdkPojo
- Enclosing class:
- ConnectionSummary
public static interface ConnectionSummary.Builder extends SdkPojo, CopyableBuilder<ConnectionSummary.Builder,ConnectionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionSummary.BuilderconnectionArn(String connectionArn)The Amazon Resource Name (ARN) of this connection.ConnectionSummary.BuilderconnectionName(String connectionName)The customer-provided connection name.ConnectionSummary.BuildercreatedAt(Instant createdAt)The App Runner connection creation time, expressed as a Unix time stamp.ConnectionSummary.BuilderproviderType(String providerType)The source repository provider.ConnectionSummary.BuilderproviderType(ProviderType providerType)The source repository provider.ConnectionSummary.Builderstatus(String status)The current state of the App Runner connection.ConnectionSummary.Builderstatus(ConnectionStatus status)The current state of the App Runner connection.-
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
-
connectionName
ConnectionSummary.Builder connectionName(String connectionName)
The customer-provided connection name.
- Parameters:
connectionName- The customer-provided connection name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionArn
ConnectionSummary.Builder connectionArn(String connectionArn)
The Amazon Resource Name (ARN) of this connection.
- Parameters:
connectionArn- The Amazon Resource Name (ARN) of this connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
providerType
ConnectionSummary.Builder providerType(String providerType)
The source repository provider.
- Parameters:
providerType- The source repository provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProviderType,ProviderType
-
providerType
ConnectionSummary.Builder providerType(ProviderType providerType)
The source repository provider.
- Parameters:
providerType- The source repository provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProviderType,ProviderType
-
status
ConnectionSummary.Builder status(String status)
The current state of the App Runner connection. When the state is
AVAILABLE, you can use the connection to create an App Runner service.- Parameters:
status- The current state of the App Runner connection. When the state isAVAILABLE, you can use the connection to create an App Runner service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionStatus,ConnectionStatus
-
status
ConnectionSummary.Builder status(ConnectionStatus status)
The current state of the App Runner connection. When the state is
AVAILABLE, you can use the connection to create an App Runner service.- Parameters:
status- The current state of the App Runner connection. When the state isAVAILABLE, you can use the connection to create an App Runner service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionStatus,ConnectionStatus
-
createdAt
ConnectionSummary.Builder createdAt(Instant createdAt)
The App Runner connection creation time, expressed as a Unix time stamp.
- Parameters:
createdAt- The App Runner connection creation time, expressed as a Unix time stamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-