Interface GetSolFunctionPackageMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GetSolFunctionPackageMetadata.Builder,GetSolFunctionPackageMetadata>,SdkBuilder<GetSolFunctionPackageMetadata.Builder,GetSolFunctionPackageMetadata>,SdkPojo
- Enclosing class:
- GetSolFunctionPackageMetadata
public static interface GetSolFunctionPackageMetadata.Builder extends SdkPojo, CopyableBuilder<GetSolFunctionPackageMetadata.Builder,GetSolFunctionPackageMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetSolFunctionPackageMetadata.BuildercreatedAt(Instant createdAt)The date that the resource was created.GetSolFunctionPackageMetadata.BuilderlastModified(Instant lastModified)The date that the resource was last modified.default GetSolFunctionPackageMetadata.Buildervnfd(Consumer<FunctionArtifactMeta.Builder> vnfd)Metadata related to the function package descriptor of the function package.GetSolFunctionPackageMetadata.Buildervnfd(FunctionArtifactMeta vnfd)Metadata related to the function package descriptor of the function package.-
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
-
createdAt
GetSolFunctionPackageMetadata.Builder createdAt(Instant createdAt)
The date that the resource was created.
- Parameters:
createdAt- The date that the resource was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModified
GetSolFunctionPackageMetadata.Builder lastModified(Instant lastModified)
The date that the resource was last modified.
- Parameters:
lastModified- The date that the resource was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vnfd
GetSolFunctionPackageMetadata.Builder vnfd(FunctionArtifactMeta vnfd)
Metadata related to the function package descriptor of the function package.
- Parameters:
vnfd- Metadata related to the function package descriptor of the function package.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vnfd
default GetSolFunctionPackageMetadata.Builder vnfd(Consumer<FunctionArtifactMeta.Builder> vnfd)
Metadata related to the function package descriptor of the function package.
This is a convenience method that creates an instance of theFunctionArtifactMeta.Builderavoiding the need to create one manually viaFunctionArtifactMeta.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovnfd(FunctionArtifactMeta).- Parameters:
vnfd- a consumer that will call methods onFunctionArtifactMeta.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vnfd(FunctionArtifactMeta)
-
-