Interface UserPoolClientReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
UserPoolClientReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:01.291Z")
@Stability(Stable)
public interface UserPoolClientReference
extends software.amazon.jsii.JsiiSerializable
A reference to a UserPoolClient resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cognito.*;
UserPoolClientReference userPoolClientReference = UserPoolClientReference.builder()
.clientId("clientId")
.userPoolId("userPoolId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forUserPoolClientReferencestatic final classAn implementation forUserPoolClientReference -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ClientId of the UserPoolClient resource.The UserPoolId of the UserPoolClient resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientId
The ClientId of the UserPoolClient resource. -
getUserPoolId
The UserPoolId of the UserPoolClient resource. -
builder
- Returns:
- a
UserPoolClientReference.BuilderofUserPoolClientReference
-