com.pulumi.aws.appstream.UserArgs Maven / Gradle / Ivy
// *** 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.aws.appstream;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class UserArgs extends com.pulumi.resources.ResourceArgs {
public static final UserArgs Empty = new UserArgs();
/**
* Authentication type for the user. You must specify USERPOOL. Valid values: `API`, `SAML`, `USERPOOL`
*
*/
@Import(name="authenticationType", required=true)
private Output authenticationType;
/**
* @return Authentication type for the user. You must specify USERPOOL. Valid values: `API`, `SAML`, `USERPOOL`
*
*/
public Output authenticationType() {
return this.authenticationType;
}
/**
* Whether the user in the user pool is enabled.
*
*/
@Import(name="enabled")
private @Nullable Output enabled;
/**
* @return Whether the user in the user pool is enabled.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy