com.pulumi.aws.elasticache.UserGroupAssociationArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud 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.aws.elasticache;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class UserGroupAssociationArgs extends com.pulumi.resources.ResourceArgs {
public static final UserGroupAssociationArgs Empty = new UserGroupAssociationArgs();
/**
* ID of the user group.
*
*/
@Import(name="userGroupId", required=true)
private Output userGroupId;
/**
* @return ID of the user group.
*
*/
public Output userGroupId() {
return this.userGroupId;
}
/**
* ID of the user to associated with the user group.
*
*/
@Import(name="userId", required=true)
private Output userId;
/**
* @return ID of the user to associated with the user group.
*
*/
public Output userId() {
return this.userId;
}
private UserGroupAssociationArgs() {}
private UserGroupAssociationArgs(UserGroupAssociationArgs $) {
this.userGroupId = $.userGroupId;
this.userId = $.userId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(UserGroupAssociationArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private UserGroupAssociationArgs $;
public Builder() {
$ = new UserGroupAssociationArgs();
}
public Builder(UserGroupAssociationArgs defaults) {
$ = new UserGroupAssociationArgs(Objects.requireNonNull(defaults));
}
/**
* @param userGroupId ID of the user group.
*
* @return builder
*
*/
public Builder userGroupId(Output userGroupId) {
$.userGroupId = userGroupId;
return this;
}
/**
* @param userGroupId ID of the user group.
*
* @return builder
*
*/
public Builder userGroupId(String userGroupId) {
return userGroupId(Output.of(userGroupId));
}
/**
* @param userId ID of the user to associated with the user group.
*
* @return builder
*
*/
public Builder userId(Output userId) {
$.userId = userId;
return this;
}
/**
* @param userId ID of the user to associated with the user group.
*
* @return builder
*
*/
public Builder userId(String userId) {
return userId(Output.of(userId));
}
public UserGroupAssociationArgs build() {
if ($.userGroupId == null) {
throw new MissingRequiredPropertyException("UserGroupAssociationArgs", "userGroupId");
}
if ($.userId == null) {
throw new MissingRequiredPropertyException("UserGroupAssociationArgs", "userId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy