
com.pulumi.azurenative.awsconnector.outputs.AwsIamAccessKeyLastUsedPropertiesResponse 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 AwsIamAccessKeyLastUsedPropertiesResponse {
/**
* @return <p>The date and time, in <a href='http://www.iso.org/iso/iso8601'>ISO 8601 date-time format</a>, when the access key was most recently used. This field is null in the following situations:</p> <ul> <li> <p>The user does not have an access key.</p> </li> <li> <p>An access key exists but has not been used since IAM began tracking this information.</p> </li> <li> <p>There is no sign-in data associated with the user.</p> </li> </ul>
*
*/
private @Nullable String lastUsedDate;
/**
* @return <p>The Amazon Web Services Region where this access key was most recently used. The value for this field is 'N/A' in the following situations:</p> <ul> <li> <p>The user does not have an access key.</p> </li> <li> <p>An access key exists but has not been used since IAM began tracking this information.</p> </li> <li> <p>There is no sign-in data associated with the user.</p> </li> </ul> <p>For more information about Amazon Web Services Regions, see <a href='https://docs.aws.amazon.com/general/latest/gr/rande.html'>Regions and endpoints</a> in the Amazon Web Services General Reference.</p>
*
*/
private @Nullable String region;
/**
* @return <p>The name of the Amazon Web Services service with which this access key was most recently used. The value of this field is 'N/A' in the following situations:</p> <ul> <li> <p>The user does not have an access key.</p> </li> <li> <p>An access key exists but has not been used since IAM started tracking this information.</p> </li> <li> <p>There is no sign-in data associated with the user.</p> </li> </ul>
*
*/
private @Nullable String serviceName;
private AwsIamAccessKeyLastUsedPropertiesResponse() {}
/**
* @return <p>The date and time, in <a href='http://www.iso.org/iso/iso8601'>ISO 8601 date-time format</a>, when the access key was most recently used. This field is null in the following situations:</p> <ul> <li> <p>The user does not have an access key.</p> </li> <li> <p>An access key exists but has not been used since IAM began tracking this information.</p> </li> <li> <p>There is no sign-in data associated with the user.</p> </li> </ul>
*
*/
public Optional lastUsedDate() {
return Optional.ofNullable(this.lastUsedDate);
}
/**
* @return <p>The Amazon Web Services Region where this access key was most recently used. The value for this field is 'N/A' in the following situations:</p> <ul> <li> <p>The user does not have an access key.</p> </li> <li> <p>An access key exists but has not been used since IAM began tracking this information.</p> </li> <li> <p>There is no sign-in data associated with the user.</p> </li> </ul> <p>For more information about Amazon Web Services Regions, see <a href='https://docs.aws.amazon.com/general/latest/gr/rande.html'>Regions and endpoints</a> in the Amazon Web Services General Reference.</p>
*
*/
public Optional region() {
return Optional.ofNullable(this.region);
}
/**
* @return <p>The name of the Amazon Web Services service with which this access key was most recently used. The value of this field is 'N/A' in the following situations:</p> <ul> <li> <p>The user does not have an access key.</p> </li> <li> <p>An access key exists but has not been used since IAM started tracking this information.</p> </li> <li> <p>There is no sign-in data associated with the user.</p> </li> </ul>
*
*/
public Optional serviceName() {
return Optional.ofNullable(this.serviceName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AwsIamAccessKeyLastUsedPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String lastUsedDate;
private @Nullable String region;
private @Nullable String serviceName;
public Builder() {}
public Builder(AwsIamAccessKeyLastUsedPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.lastUsedDate = defaults.lastUsedDate;
this.region = defaults.region;
this.serviceName = defaults.serviceName;
}
@CustomType.Setter
public Builder lastUsedDate(@Nullable String lastUsedDate) {
this.lastUsedDate = lastUsedDate;
return this;
}
@CustomType.Setter
public Builder region(@Nullable String region) {
this.region = region;
return this;
}
@CustomType.Setter
public Builder serviceName(@Nullable String serviceName) {
this.serviceName = serviceName;
return this;
}
public AwsIamAccessKeyLastUsedPropertiesResponse build() {
final var _resultValue = new AwsIamAccessKeyLastUsedPropertiesResponse();
_resultValue.lastUsedDate = lastUsedDate;
_resultValue.region = region;
_resultValue.serviceName = serviceName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy