Interface Connection.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Connection.Builder,Connection>,SdkBuilder<Connection.Builder,Connection>,SdkPojo
- Enclosing class:
- Connection
public static interface Connection.Builder extends SdkPojo, CopyableBuilder<Connection.Builder,Connection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Connection.BuilderconnectionArn(String connectionArn)The Amazon Resource Name (ARN) of this connection.Connection.BuilderconnectionName(String connectionName)The customer-provided connection name.Connection.BuildercreatedAt(Instant createdAt)The App Runner connection creation time, expressed as a Unix time stamp.Connection.BuilderproviderType(String providerType)The source repository provider.Connection.BuilderproviderType(ProviderType providerType)The source repository provider.Connection.Builderstatus(String status)The current state of the App Runner connection.Connection.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, sdkFields
-
-
-
-
Method Detail
-
connectionName
Connection.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
Connection.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
Connection.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
Connection.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
Connection.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
Connection.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
Connection.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.
-
-