Interface AssertionsProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,LambdaFunctionProviderProps
- All Known Implementing Classes:
AssertionsProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.269Z")
@Stability(Experimental)
public interface AssertionsProviderProps
extends software.amazon.jsii.JsiiSerializable, LambdaFunctionProviderProps
(experimental) Properties for defining an AssertionsProvider.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.integtests.alpha.*; import software.amazon.awscdk.services.logs.*; AssertionsProviderProps assertionsProviderProps = AssertionsProviderProps.builder() .handler("handler") .logRetention(RetentionDays.ONE_DAY) .uuid("uuid") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAssertionsProviderProps
static final class
An implementation forAssertionsProviderProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.integtests.alpha.LambdaFunctionProviderProps
getHandler, getLogRetention
-
Method Details
-
getUuid
(experimental) This determines the uniqueness of each AssertionsProvider.You should only need to provide something different here if you know that you need a separate provider
Default: - the default uuid is used
-
builder
- Returns:
- a
AssertionsProviderProps.Builder
ofAssertionsProviderProps
-