Interface AccessControlEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccessControlEntry.Builder,AccessControlEntry>,SdkBuilder<AccessControlEntry.Builder,AccessControlEntry>,SdkPojo
- Enclosing class:
- AccessControlEntry
public static interface AccessControlEntry.Builder extends SdkPojo, CopyableBuilder<AccessControlEntry.Builder,AccessControlEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AccessControlEntry.BuilderaccessRights(Consumer<AccessRights.Builder> accessRights)Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.AccessControlEntry.BuilderaccessRights(AccessRights accessRights)Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.AccessControlEntry.BuildercreatedAt(Instant createdAt)The date and time that the Access Control Entry was created.AccessControlEntry.BuildergroupDisplayName(String groupDisplayName)Name of the Active Directory group.AccessControlEntry.BuildergroupSecurityIdentifier(String groupSecurityIdentifier)Security identifier (SID) of the group object from Active Directory.AccessControlEntry.BuildertemplateArn(String templateArn)The Amazon Resource Name (ARN) that was returned when you called CreateTemplate.AccessControlEntry.BuilderupdatedAt(Instant updatedAt)The date and time that the Access Control Entry was 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, sdkFields
-
-
-
-
Method Detail
-
accessRights
AccessControlEntry.Builder accessRights(AccessRights accessRights)
Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.
- Parameters:
accessRights- Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessRights
default AccessControlEntry.Builder accessRights(Consumer<AccessRights.Builder> accessRights)
Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.
This is a convenience method that creates an instance of theAccessRights.Builderavoiding the need to create one manually viaAccessRights.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaccessRights(AccessRights).- Parameters:
accessRights- a consumer that will call methods onAccessRights.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
accessRights(AccessRights)
-
createdAt
AccessControlEntry.Builder createdAt(Instant createdAt)
The date and time that the Access Control Entry was created.
- Parameters:
createdAt- The date and time that the Access Control Entry was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupDisplayName
AccessControlEntry.Builder groupDisplayName(String groupDisplayName)
Name of the Active Directory group. This name does not need to match the group name in Active Directory.
- Parameters:
groupDisplayName- Name of the Active Directory group. This name does not need to match the group name in Active Directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupSecurityIdentifier
AccessControlEntry.Builder groupSecurityIdentifier(String groupSecurityIdentifier)
Security identifier (SID) of the group object from Active Directory. The SID starts with "S-".
- Parameters:
groupSecurityIdentifier- Security identifier (SID) of the group object from Active Directory. The SID starts with "S-".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateArn
AccessControlEntry.Builder templateArn(String templateArn)
The Amazon Resource Name (ARN) that was returned when you called CreateTemplate.
- Parameters:
templateArn- The Amazon Resource Name (ARN) that was returned when you called CreateTemplate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
AccessControlEntry.Builder updatedAt(Instant updatedAt)
The date and time that the Access Control Entry was updated.
- Parameters:
updatedAt- The date and time that the Access Control Entry was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-