Interface UnsupportedResource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UnsupportedResource.Builder,UnsupportedResource>,SdkBuilder<UnsupportedResource.Builder,UnsupportedResource>,SdkPojo
- Enclosing class:
- UnsupportedResource
public static interface UnsupportedResource.Builder extends SdkPojo, CopyableBuilder<UnsupportedResource.Builder,UnsupportedResource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UnsupportedResource.BuilderlogicalResourceId(Consumer<LogicalResourceId.Builder> logicalResourceId)Logical resource identifier for the unsupported resource.UnsupportedResource.BuilderlogicalResourceId(LogicalResourceId logicalResourceId)Logical resource identifier for the unsupported resource.default UnsupportedResource.BuilderphysicalResourceId(Consumer<PhysicalResourceId.Builder> physicalResourceId)Physical resource identifier for the unsupported resource.UnsupportedResource.BuilderphysicalResourceId(PhysicalResourceId physicalResourceId)Physical resource identifier for the unsupported resource.UnsupportedResource.BuilderresourceType(String resourceType)The type of resource.UnsupportedResource.BuilderunsupportedResourceStatus(String unsupportedResourceStatus)The status of the unsupported resource.-
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
-
logicalResourceId
UnsupportedResource.Builder logicalResourceId(LogicalResourceId logicalResourceId)
Logical resource identifier for the unsupported resource.
- Parameters:
logicalResourceId- Logical resource identifier for the unsupported resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logicalResourceId
default UnsupportedResource.Builder logicalResourceId(Consumer<LogicalResourceId.Builder> logicalResourceId)
Logical resource identifier for the unsupported resource.
This is a convenience method that creates an instance of theLogicalResourceId.Builderavoiding the need to create one manually viaLogicalResourceId.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tologicalResourceId(LogicalResourceId).- Parameters:
logicalResourceId- a consumer that will call methods onLogicalResourceId.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
logicalResourceId(LogicalResourceId)
-
physicalResourceId
UnsupportedResource.Builder physicalResourceId(PhysicalResourceId physicalResourceId)
Physical resource identifier for the unsupported resource.
- Parameters:
physicalResourceId- Physical resource identifier for the unsupported resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
physicalResourceId
default UnsupportedResource.Builder physicalResourceId(Consumer<PhysicalResourceId.Builder> physicalResourceId)
Physical resource identifier for the unsupported resource.
This is a convenience method that creates an instance of thePhysicalResourceId.Builderavoiding the need to create one manually viaPhysicalResourceId.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tophysicalResourceId(PhysicalResourceId).- Parameters:
physicalResourceId- a consumer that will call methods onPhysicalResourceId.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
physicalResourceId(PhysicalResourceId)
-
resourceType
UnsupportedResource.Builder resourceType(String resourceType)
The type of resource.
- Parameters:
resourceType- The type of resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unsupportedResourceStatus
UnsupportedResource.Builder unsupportedResourceStatus(String unsupportedResourceStatus)
The status of the unsupported resource.
- Parameters:
unsupportedResourceStatus- The status of the unsupported resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-