Interface ManagedSecurityGroup.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ManagedSecurityGroup.Builder,ManagedSecurityGroup>,SdkBuilder<ManagedSecurityGroup.Builder,ManagedSecurityGroup>,SdkPojo
- Enclosing class:
- ManagedSecurityGroup
@Mutable @NotThreadSafe public static interface ManagedSecurityGroup.Builder extends SdkPojo, CopyableBuilder<ManagedSecurityGroup.Builder,ManagedSecurityGroup>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedSecurityGroup.Builderarn(String arn)The ARN of the security group.ManagedSecurityGroup.Builderstatus(String status)The status of the security group.ManagedSecurityGroup.Builderstatus(ManagedResourceStatus status)The status of the security group.ManagedSecurityGroup.BuilderstatusReason(String statusReason)Information about why the security group is in the current status.ManagedSecurityGroup.BuilderupdatedAt(Instant updatedAt)The Unix timestamp for when the security group was last updated.-
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
-
arn
ManagedSecurityGroup.Builder arn(String arn)
The ARN of the security group.
- Parameters:
arn- The ARN of the security group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ManagedSecurityGroup.Builder status(String status)
The status of the security group.
- Parameters:
status- The status of the security group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ManagedResourceStatus,ManagedResourceStatus
-
status
ManagedSecurityGroup.Builder status(ManagedResourceStatus status)
The status of the security group.
- Parameters:
status- The status of the security group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ManagedResourceStatus,ManagedResourceStatus
-
statusReason
ManagedSecurityGroup.Builder statusReason(String statusReason)
Information about why the security group is in the current status.
- Parameters:
statusReason- Information about why the security group is in the current status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
ManagedSecurityGroup.Builder updatedAt(Instant updatedAt)
The Unix timestamp for when the security group was last updated.
- Parameters:
updatedAt- The Unix timestamp for when the security group was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-