
com.pulumi.azurenative.awsconnector.outputs.CognitoUserPoolConfigResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.awsconnector.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class CognitoUserPoolConfigResponse {
/**
* @return <p>A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.</p>
*
*/
private @Nullable String appIdClientRegex;
/**
* @return <p>The Amazon Web Services Region in which the user pool was created.</p>
*
*/
private @Nullable String awsRegion;
/**
* @return <p>The user pool ID.</p>
*
*/
private @Nullable String userPoolId;
private CognitoUserPoolConfigResponse() {}
/**
* @return <p>A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.</p>
*
*/
public Optional appIdClientRegex() {
return Optional.ofNullable(this.appIdClientRegex);
}
/**
* @return <p>The Amazon Web Services Region in which the user pool was created.</p>
*
*/
public Optional awsRegion() {
return Optional.ofNullable(this.awsRegion);
}
/**
* @return <p>The user pool ID.</p>
*
*/
public Optional userPoolId() {
return Optional.ofNullable(this.userPoolId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CognitoUserPoolConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String appIdClientRegex;
private @Nullable String awsRegion;
private @Nullable String userPoolId;
public Builder() {}
public Builder(CognitoUserPoolConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.appIdClientRegex = defaults.appIdClientRegex;
this.awsRegion = defaults.awsRegion;
this.userPoolId = defaults.userPoolId;
}
@CustomType.Setter
public Builder appIdClientRegex(@Nullable String appIdClientRegex) {
this.appIdClientRegex = appIdClientRegex;
return this;
}
@CustomType.Setter
public Builder awsRegion(@Nullable String awsRegion) {
this.awsRegion = awsRegion;
return this;
}
@CustomType.Setter
public Builder userPoolId(@Nullable String userPoolId) {
this.userPoolId = userPoolId;
return this;
}
public CognitoUserPoolConfigResponse build() {
final var _resultValue = new CognitoUserPoolConfigResponse();
_resultValue.appIdClientRegex = appIdClientRegex;
_resultValue.awsRegion = awsRegion;
_resultValue.userPoolId = userPoolId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy