com.pulumi.aws.vpclattice.AuthPolicyArgs 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.vpclattice;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class AuthPolicyArgs extends com.pulumi.resources.ResourceArgs {
public static final AuthPolicyArgs Empty = new AuthPolicyArgs();
/**
* The auth policy. The policy string in JSON must not contain newlines or blank lines.
*
*/
@Import(name="policy", required=true)
private Output policy;
/**
* @return The auth policy. The policy string in JSON must not contain newlines or blank lines.
*
*/
public Output policy() {
return this.policy;
}
/**
* The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
*
*/
@Import(name="resourceIdentifier", required=true)
private Output resourceIdentifier;
/**
* @return The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
*
*/
public Output resourceIdentifier() {
return this.resourceIdentifier;
}
/**
* The state of the auth policy. The auth policy is only active when the auth type is set to `AWS_IAM`. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is `NONE`, then, any auth policy you provide will remain inactive.
*
*/
@Import(name="state")
private @Nullable Output state;
/**
* @return The state of the auth policy. The auth policy is only active when the auth type is set to `AWS_IAM`. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is `NONE`, then, any auth policy you provide will remain inactive.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy