Codota Logo
UpdateUserPoolClientRequest$BuilderImpl
Code IndexAdd Codota to your IDE (free)

How to use
UpdateUserPoolClientRequest$BuilderImpl
in
software.amazon.awssdk.services.cognitoidentityprovider.model

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.UpdateUserPoolClientRequest$BuilderImpl (Showing top 16 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
origin: aws/aws-sdk-java-v2

@Override
@SafeVarargs
public final Builder allowedOAuthFlows(OAuthFlowType... allowedOAuthFlows) {
  allowedOAuthFlows(Arrays.asList(allowedOAuthFlows));
  return this;
}
origin: aws/aws-sdk-java-v2

@Override
@SafeVarargs
public final Builder allowedOAuthFlowsWithStrings(String... allowedOAuthFlows) {
  allowedOAuthFlowsWithStrings(Arrays.asList(allowedOAuthFlows));
  return this;
}
origin: aws/aws-sdk-java-v2

@Override
@SafeVarargs
public final Builder allowedOAuthScopes(String... allowedOAuthScopes) {
  allowedOAuthScopes(Arrays.asList(allowedOAuthScopes));
  return this;
}
origin: aws/aws-sdk-java-v2

@Override
@SafeVarargs
public final Builder callbackURLs(String... callbackURLs) {
  callbackURLs(Arrays.asList(callbackURLs));
  return this;
}
origin: aws/aws-sdk-java-v2

@Override
@SafeVarargs
public final Builder explicitAuthFlows(ExplicitAuthFlowsType... explicitAuthFlows) {
  explicitAuthFlows(Arrays.asList(explicitAuthFlows));
  return this;
}
origin: software.amazon.awssdk/cognitoidp

@Override
@SafeVarargs
public final Builder allowedOAuthScopes(String... allowedOAuthScopes) {
  allowedOAuthScopes(Arrays.asList(allowedOAuthScopes));
  return this;
}
origin: software.amazon.awssdk/cognitoidp

@Override
@SafeVarargs
public final Builder explicitAuthFlows(ExplicitAuthFlowsType... explicitAuthFlows) {
  explicitAuthFlows(Arrays.asList(explicitAuthFlows));
  return this;
}
origin: aws/aws-sdk-java-v2

@Override
public Builder toBuilder() {
  return new BuilderImpl(this);
}
origin: software.amazon.awssdk/cognitoidp

@Override
public Builder toBuilder() {
  return new BuilderImpl(this);
}
origin: software.amazon.awssdk/cognitoidp

@Override
@SafeVarargs
public final Builder callbackURLs(String... callbackURLs) {
  callbackURLs(Arrays.asList(callbackURLs));
  return this;
}
origin: aws/aws-sdk-java-v2

public static Builder builder() {
  return new BuilderImpl();
}
origin: software.amazon.awssdk/cognitoidp

public static Builder builder() {
  return new BuilderImpl();
}
origin: software.amazon.awssdk/cognitoidp

@Override
@SafeVarargs
public final Builder allowedOAuthFlows(OAuthFlowType... allowedOAuthFlows) {
  allowedOAuthFlows(Arrays.asList(allowedOAuthFlows));
  return this;
}
origin: aws/aws-sdk-java-v2

private BuilderImpl(UpdateUserPoolClientRequest model) {
  super(model);
  userPoolId(model.userPoolId);
  clientId(model.clientId);
  clientName(model.clientName);
  refreshTokenValidity(model.refreshTokenValidity);
  readAttributes(model.readAttributes);
  writeAttributes(model.writeAttributes);
  explicitAuthFlowsWithStrings(model.explicitAuthFlows);
  supportedIdentityProviders(model.supportedIdentityProviders);
  callbackURLs(model.callbackURLs);
  logoutURLs(model.logoutURLs);
  defaultRedirectURI(model.defaultRedirectURI);
  allowedOAuthFlowsWithStrings(model.allowedOAuthFlows);
  allowedOAuthScopes(model.allowedOAuthScopes);
  allowedOAuthFlowsUserPoolClient(model.allowedOAuthFlowsUserPoolClient);
  analyticsConfiguration(model.analyticsConfiguration);
}
origin: software.amazon.awssdk/cognitoidp

private BuilderImpl(UpdateUserPoolClientRequest model) {
  super(model);
  userPoolId(model.userPoolId);
  clientId(model.clientId);
  clientName(model.clientName);
  refreshTokenValidity(model.refreshTokenValidity);
  readAttributes(model.readAttributes);
  writeAttributes(model.writeAttributes);
  explicitAuthFlowsWithStrings(model.explicitAuthFlows);
  supportedIdentityProviders(model.supportedIdentityProviders);
  callbackURLs(model.callbackURLs);
  logoutURLs(model.logoutURLs);
  defaultRedirectURI(model.defaultRedirectURI);
  allowedOAuthFlowsWithStrings(model.allowedOAuthFlows);
  allowedOAuthScopes(model.allowedOAuthScopes);
  allowedOAuthFlowsUserPoolClient(model.allowedOAuthFlowsUserPoolClient);
}
origin: software.amazon.awssdk/cognitoidp

@Override
@SafeVarargs
public final Builder allowedOAuthFlowsWithStrings(String... allowedOAuthFlows) {
  allowedOAuthFlowsWithStrings(Arrays.asList(allowedOAuthFlows));
  return this;
}
software.amazon.awssdk.services.cognitoidentityprovider.modelUpdateUserPoolClientRequest$BuilderImpl

Most used methods

  • <init>
  • allowedOAuthFlows
  • allowedOAuthFlowsUserPoolClient
  • allowedOAuthFlowsWithStrings
  • allowedOAuthScopes
  • callbackURLs
  • clientId
  • clientName
  • defaultRedirectURI
  • explicitAuthFlows
  • explicitAuthFlowsWithStrings
  • logoutURLs
  • explicitAuthFlowsWithStrings,
  • logoutURLs,
  • readAttributes,
  • refreshTokenValidity,
  • supportedIdentityProviders,
  • userPoolId,
  • writeAttributes,
  • analyticsConfiguration

Popular in Java

  • Start an intent from android
  • getContentResolver (Context)
  • getSharedPreferences (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • String (java.lang)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now