TrustProviderArgs

data class TrustProviderArgs(val description: Output<String>? = null, val deviceOptions: Output<TrustProviderDeviceOptionsArgs>? = null, val deviceTrustProviderType: Output<String>? = null, val oidcOptions: Output<TrustProviderOidcOptionsArgs>? = null, val policyReferenceName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val trustProviderType: Output<String>? = null, val userTrustProviderType: Output<String>? = null) : ConvertibleToJava<TrustProviderArgs>

Resource for managing a Verified Access Trust Provider.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.verifiedaccess.TrustProvider;
import com.pulumi.aws.verifiedaccess.TrustProviderArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new TrustProvider("example", TrustProviderArgs.builder()
.policyReferenceName("example")
.trustProviderType("user")
.userTrustProviderType("iam-identity-center")
.build());
}
}

Import

Using pulumi import, import Transfer Workflows using the id. For example:

$ pulumi import aws:verifiedaccess/trustProvider:TrustProvider example vatp-8012925589

Constructors

Link copied to clipboard
fun TrustProviderArgs(description: Output<String>? = null, deviceOptions: Output<TrustProviderDeviceOptionsArgs>? = null, deviceTrustProviderType: Output<String>? = null, oidcOptions: Output<TrustProviderOidcOptionsArgs>? = null, policyReferenceName: Output<String>? = null, tags: Output<Map<String, String>>? = null, trustProviderType: Output<String>? = null, userTrustProviderType: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TrustProviderArgs

Properties

Link copied to clipboard
val description: Output<String>? = null

A description for the AWS Verified Access trust provider.

Link copied to clipboard

A block of options for device identity based trust providers.

Link copied to clipboard
val deviceTrustProviderType: Output<String>? = null

The type of device-based trust provider.

Link copied to clipboard

The OpenID Connect details for an oidc-type, user-identity based trust provider.

Link copied to clipboard
val policyReferenceName: Output<String>? = null

The identifier to be used when working with policy rules.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val trustProviderType: Output<String>? = null

The type of trust provider can be either user or device-based. The following arguments are optional:

Link copied to clipboard
val userTrustProviderType: Output<String>? = null

The type of user-based trust provider.