Interface SettingEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SettingEntry.Builder,SettingEntry>,SdkBuilder<SettingEntry.Builder,SettingEntry>,SdkPojo
- Enclosing class:
- SettingEntry
public static interface SettingEntry.Builder extends SdkPojo, CopyableBuilder<SettingEntry.Builder,SettingEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SettingEntry.BuilderallowedValues(String allowedValues)The valid range of values for the directory setting.SettingEntry.BuilderappliedValue(String appliedValue)The value of the directory setting that is applied to the directory.SettingEntry.BuilderdataType(String dataType)The data type of a directory setting.SettingEntry.BuilderlastRequestedDateTime(Instant lastRequestedDateTime)The date and time when the request to update a directory setting was last submitted.SettingEntry.BuilderlastUpdatedDateTime(Instant lastUpdatedDateTime)The date and time when the directory setting was last updated.SettingEntry.Buildername(String name)The name of the directory setting.SettingEntry.BuilderrequestDetailedStatus(Map<String,DirectoryConfigurationStatus> requestDetailedStatus)Details about the status of the request to update the directory setting.SettingEntry.BuilderrequestDetailedStatusWithStrings(Map<String,String> requestDetailedStatus)Details about the status of the request to update the directory setting.SettingEntry.BuilderrequestedValue(String requestedValue)The value that was last requested for the directory setting.SettingEntry.BuilderrequestStatus(String requestStatus)The overall status of the request to update the directory setting request.SettingEntry.BuilderrequestStatus(DirectoryConfigurationStatus requestStatus)The overall status of the request to update the directory setting request.SettingEntry.BuilderrequestStatusMessage(String requestStatusMessage)The last status message for the directory status request.SettingEntry.Buildertype(String type)The type, or category, of a directory setting.-
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
-
type
SettingEntry.Builder type(String type)
The type, or category, of a directory setting. Similar settings have the same type. For example,
Protocol,Cipher, orCertificate-Based Authentication.- Parameters:
type- The type, or category, of a directory setting. Similar settings have the same type. For example,Protocol,Cipher, orCertificate-Based Authentication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
SettingEntry.Builder name(String name)
The name of the directory setting. For example:
TLS_1_0- Parameters:
name- The name of the directory setting. For example:TLS_1_0- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValues
SettingEntry.Builder allowedValues(String allowedValues)
The valid range of values for the directory setting. These values depend on the
DataTypeof your directory.- Parameters:
allowedValues- The valid range of values for the directory setting. These values depend on theDataTypeof your directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appliedValue
SettingEntry.Builder appliedValue(String appliedValue)
The value of the directory setting that is applied to the directory.
- Parameters:
appliedValue- The value of the directory setting that is applied to the directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestedValue
SettingEntry.Builder requestedValue(String requestedValue)
The value that was last requested for the directory setting.
- Parameters:
requestedValue- The value that was last requested for the directory setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestStatus
SettingEntry.Builder requestStatus(String requestStatus)
The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status is
Failed.- Parameters:
requestStatus- The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status isFailed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DirectoryConfigurationStatus,DirectoryConfigurationStatus
-
requestStatus
SettingEntry.Builder requestStatus(DirectoryConfigurationStatus requestStatus)
The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status is
Failed.- Parameters:
requestStatus- The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status isFailed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DirectoryConfigurationStatus,DirectoryConfigurationStatus
-
requestDetailedStatusWithStrings
SettingEntry.Builder requestDetailedStatusWithStrings(Map<String,String> requestDetailedStatus)
Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.
- Parameters:
requestDetailedStatus- Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestDetailedStatus
SettingEntry.Builder requestDetailedStatus(Map<String,DirectoryConfigurationStatus> requestDetailedStatus)
Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.
- Parameters:
requestDetailedStatus- Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestStatusMessage
SettingEntry.Builder requestStatusMessage(String requestStatusMessage)
The last status message for the directory status request.
- Parameters:
requestStatusMessage- The last status message for the directory status request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDateTime
SettingEntry.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time when the directory setting was last updated.
- Parameters:
lastUpdatedDateTime- The date and time when the directory setting was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastRequestedDateTime
SettingEntry.Builder lastRequestedDateTime(Instant lastRequestedDateTime)
The date and time when the request to update a directory setting was last submitted.
- Parameters:
lastRequestedDateTime- The date and time when the request to update a directory setting was last submitted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
SettingEntry.Builder dataType(String dataType)
The data type of a directory setting. This is used to define the
AllowedValuesof a setting. For example a data type can beBoolean,DurationInSeconds, orEnum.- Parameters:
dataType- The data type of a directory setting. This is used to define theAllowedValuesof a setting. For example a data type can beBoolean,DurationInSeconds, orEnum.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-