Interface RawString.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RawString.Builder,RawString>,SdkBuilder<RawString.Builder,RawString>,SdkPojo
- Enclosing class:
- RawString
public static interface RawString.Builder extends SdkPojo, CopyableBuilder<RawString.Builder,RawString>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RawString.Buildercontent(String content)The YAML-formatted or JSON-formatted revision string.RawString.Buildersha256(String sha256)The SHA256 hash value of the revision content.-
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
-
content
RawString.Builder content(String content)
The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.
- Parameters:
content- The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sha256
RawString.Builder sha256(String sha256)
The SHA256 hash value of the revision content.
- Parameters:
sha256- The SHA256 hash value of the revision content.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-