Interface DevServicesAmazonProvider
-
public interface DevServicesAmazonProviderAllows to prepare a localstack container and get client properties
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>prepareLocalStack(org.testcontainers.containers.localstack.LocalStackContainer localstack)Prepare a new container owned by this applicationMap<String,String>reuseLocalStack(BorrowedLocalStackContainer localstack)Prepare an existing container not owned by this application
-
-
-
Method Detail
-
prepareLocalStack
Map<String,String> prepareLocalStack(org.testcontainers.containers.localstack.LocalStackContainer localstack)
Prepare a new container owned by this application- Parameters:
localstack- The new localstack container- Returns:
- properties to configure a client to consume the container
-
reuseLocalStack
Map<String,String> reuseLocalStack(BorrowedLocalStackContainer localstack)
Prepare an existing container not owned by this application- Parameters:
localstack- The borrowed localstack container- Returns:
- properties to configure a client to consume the container
-
-