Interface CfnVerifiedAccessTrustProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessTrustProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.242Z")
@Stability(Stable)
public interface CfnVerifiedAccessTrustProviderProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVerifiedAccessTrustProvider
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; CfnVerifiedAccessTrustProviderProps cfnVerifiedAccessTrustProviderProps = CfnVerifiedAccessTrustProviderProps.builder() .policyReferenceName("policyReferenceName") .trustProviderType("trustProviderType") // the properties below are optional .description("description") .deviceOptions(DeviceOptionsProperty.builder() .tenantId("tenantId") .build()) .deviceTrustProviderType("deviceTrustProviderType") .oidcOptions(OidcOptionsProperty.builder() .authorizationEndpoint("authorizationEndpoint") .clientId("clientId") .clientSecret("clientSecret") .issuer("issuer") .scope("scope") .tokenEndpoint("tokenEndpoint") .userInfoEndpoint("userInfoEndpoint") .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .userTrustProviderType("userTrustProviderType") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVerifiedAccessTrustProviderProps
static final class
An implementation forCfnVerifiedAccessTrustProviderProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A description for the AWS Verified Access trust provider.default Object
The options for device-identity trust provider.default String
The type of device-based trust provider.default Object
The options for an OpenID Connect-compatible user-identity trust provider.The identifier to be used when working with policy rules.getTags()
The tags.The type of Verified Access trust provider.default String
The type of user-based trust provider.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPolicyReferenceName
The identifier to be used when working with policy rules. -
getTrustProviderType
The type of Verified Access trust provider. -
getDescription
A description for the AWS Verified Access trust provider. -
getDeviceOptions
The options for device-identity trust provider. -
getDeviceTrustProviderType
The type of device-based trust provider. -
getOidcOptions
The options for an OpenID Connect-compatible user-identity trust provider. -
getTags
The tags. -
getUserTrustProviderType
The type of user-based trust provider. -
builder
-