com.pulumi.aws.ssoadmin.outputs.GetPermissionSetResult 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.
The newest version!
// *** 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.ssoadmin.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
@CustomType
public final class GetPermissionSetResult {
private String arn;
private String createdDate;
/**
* @return Description of the Permission Set.
*
*/
private String description;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private String instanceArn;
private String name;
/**
* @return Relay state URL used to redirect users within the application during the federation authentication process.
*
*/
private String relayState;
/**
* @return Length of time that the application user sessions are valid in the ISO-8601 standard.
*
*/
private String sessionDuration;
/**
* @return Key-value map of resource tags.
*
*/
private Map tags;
private GetPermissionSetResult() {}
public String arn() {
return this.arn;
}
public String createdDate() {
return this.createdDate;
}
/**
* @return Description of the Permission Set.
*
*/
public String description() {
return this.description;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public String instanceArn() {
return this.instanceArn;
}
public String name() {
return this.name;
}
/**
* @return Relay state URL used to redirect users within the application during the federation authentication process.
*
*/
public String relayState() {
return this.relayState;
}
/**
* @return Length of time that the application user sessions are valid in the ISO-8601 standard.
*
*/
public String sessionDuration() {
return this.sessionDuration;
}
/**
* @return Key-value map of resource tags.
*
*/
public Map tags() {
return this.tags;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPermissionSetResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String arn;
private String createdDate;
private String description;
private String id;
private String instanceArn;
private String name;
private String relayState;
private String sessionDuration;
private Map tags;
public Builder() {}
public Builder(GetPermissionSetResult defaults) {
Objects.requireNonNull(defaults);
this.arn = defaults.arn;
this.createdDate = defaults.createdDate;
this.description = defaults.description;
this.id = defaults.id;
this.instanceArn = defaults.instanceArn;
this.name = defaults.name;
this.relayState = defaults.relayState;
this.sessionDuration = defaults.sessionDuration;
this.tags = defaults.tags;
}
@CustomType.Setter
public Builder arn(String arn) {
if (arn == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "arn");
}
this.arn = arn;
return this;
}
@CustomType.Setter
public Builder createdDate(String createdDate) {
if (createdDate == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "createdDate");
}
this.createdDate = createdDate;
return this;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder instanceArn(String instanceArn) {
if (instanceArn == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "instanceArn");
}
this.instanceArn = instanceArn;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder relayState(String relayState) {
if (relayState == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "relayState");
}
this.relayState = relayState;
return this;
}
@CustomType.Setter
public Builder sessionDuration(String sessionDuration) {
if (sessionDuration == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "sessionDuration");
}
this.sessionDuration = sessionDuration;
return this;
}
@CustomType.Setter
public Builder tags(Map tags) {
if (tags == null) {
throw new MissingRequiredPropertyException("GetPermissionSetResult", "tags");
}
this.tags = tags;
return this;
}
public GetPermissionSetResult build() {
final var _resultValue = new GetPermissionSetResult();
_resultValue.arn = arn;
_resultValue.createdDate = createdDate;
_resultValue.description = description;
_resultValue.id = id;
_resultValue.instanceArn = instanceArn;
_resultValue.name = name;
_resultValue.relayState = relayState;
_resultValue.sessionDuration = sessionDuration;
_resultValue.tags = tags;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy