Interface TenantInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TenantInfo.Builder,TenantInfo>,SdkBuilder<TenantInfo.Builder,TenantInfo>,SdkPojo
- Enclosing class:
- TenantInfo
@Mutable @NotThreadSafe public static interface TenantInfo.Builder extends SdkPojo, CopyableBuilder<TenantInfo.Builder,TenantInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TenantInfo.BuildercreatedTimestamp(Instant createdTimestamp)The date and time when the tenant was created.TenantInfo.BuildertenantArn(String tenantArn)The Amazon Resource Name (ARN) of the tenant.TenantInfo.BuildertenantId(String tenantId)A unique identifier for the tenant.TenantInfo.BuildertenantName(String tenantName)The name of the tenant.-
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
-
tenantName
TenantInfo.Builder tenantName(String tenantName)
The name of the tenant.
- Parameters:
tenantName- The name of the tenant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenantId
TenantInfo.Builder tenantId(String tenantId)
A unique identifier for the tenant.
- Parameters:
tenantId- A unique identifier for the tenant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenantArn
TenantInfo.Builder tenantArn(String tenantArn)
The Amazon Resource Name (ARN) of the tenant.
- Parameters:
tenantArn- The Amazon Resource Name (ARN) of the tenant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
TenantInfo.Builder createdTimestamp(Instant createdTimestamp)
The date and time when the tenant was created.
- Parameters:
createdTimestamp- The date and time when the tenant was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-