Interface RemediationException.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RemediationException.Builder,RemediationException>,SdkBuilder<RemediationException.Builder,RemediationException>,SdkPojo
- Enclosing class:
- RemediationException
public static interface RemediationException.Builder extends SdkPojo, CopyableBuilder<RemediationException.Builder,RemediationException>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemediationException.BuilderconfigRuleName(String configRuleName)The name of the Config rule.RemediationException.BuilderexpirationTime(Instant expirationTime)The time when the remediation exception will be deleted.RemediationException.Buildermessage(String message)An explanation of an remediation exception.RemediationException.BuilderresourceId(String resourceId)The ID of the resource (for example., sg-xxxxxx).RemediationException.BuilderresourceType(String resourceType)The type of a 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
-
configRuleName
RemediationException.Builder configRuleName(String configRuleName)
The name of the Config rule.
- Parameters:
configRuleName- The name of the Config rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceType
RemediationException.Builder resourceType(String resourceType)
The type of a resource.
- Parameters:
resourceType- The type of a resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceId
RemediationException.Builder resourceId(String resourceId)
The ID of the resource (for example., sg-xxxxxx).
- Parameters:
resourceId- The ID of the resource (for example., sg-xxxxxx).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
RemediationException.Builder message(String message)
An explanation of an remediation exception.
- Parameters:
message- An explanation of an remediation exception.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expirationTime
RemediationException.Builder expirationTime(Instant expirationTime)
The time when the remediation exception will be deleted.
- Parameters:
expirationTime- The time when the remediation exception will be deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-