Interface CfnVerifiedAccessTrustProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessTrustProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:35.220Z")
@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()
.publicSigningKeyUrl("publicSigningKeyUrl")
.tenantId("tenantId")
.build())
.deviceTrustProviderType("deviceTrustProviderType")
.nativeApplicationOidcOptions(NativeApplicationOidcOptionsProperty.builder()
.authorizationEndpoint("authorizationEndpoint")
.clientId("clientId")
.clientSecret("clientSecret")
.issuer("issuer")
.publicSigningKeyEndpoint("publicSigningKeyEndpoint")
.scope("scope")
.tokenEndpoint("tokenEndpoint")
.userInfoEndpoint("userInfoEndpoint")
.build())
.oidcOptions(OidcOptionsProperty.builder()
.authorizationEndpoint("authorizationEndpoint")
.clientId("clientId")
.clientSecret("clientSecret")
.issuer("issuer")
.scope("scope")
.tokenEndpoint("tokenEndpoint")
.userInfoEndpoint("userInfoEndpoint")
.build())
.sseSpecification(SseSpecificationProperty.builder()
.customerManagedKeyEnabled(false)
.kmsKeyArn("kmsKeyArn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userTrustProviderType("userTrustProviderType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVerifiedAccessTrustProviderPropsstatic final classAn implementation forCfnVerifiedAccessTrustProviderProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for the AWS Verified Access trust provider.default ObjectThe options for device-identity trust provider.default StringThe type of device-based trust provider.default ObjectThe OpenID Connect (OIDC) options.default ObjectThe options for an OpenID Connect-compatible user-identity trust provider.The identifier to be used when working with policy rules.default ObjectThe options for additional server side encryption.getTags()The tags.The type of Verified Access trust provider.default StringThe 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.- See Also:
-
getTrustProviderType
The type of Verified Access trust provider.- See Also:
-
getDescription
A description for the AWS Verified Access trust provider.- See Also:
-
getDeviceOptions
The options for device-identity trust provider.Returns union: either
IResolvableorCfnVerifiedAccessTrustProvider.DeviceOptionsProperty- See Also:
-
getDeviceTrustProviderType
The type of device-based trust provider.- See Also:
-
getNativeApplicationOidcOptions
The OpenID Connect (OIDC) options.Returns union: either
IResolvableorCfnVerifiedAccessTrustProvider.NativeApplicationOidcOptionsProperty- See Also:
-
getOidcOptions
The options for an OpenID Connect-compatible user-identity trust provider.Returns union: either
IResolvableorCfnVerifiedAccessTrustProvider.OidcOptionsProperty- See Also:
-
getSseSpecification
The options for additional server side encryption.Returns union: either
IResolvableorCfnVerifiedAccessTrustProvider.SseSpecificationProperty- See Also:
-
getTags
The tags.- See Also:
-
getUserTrustProviderType
The type of user-based trust provider.- See Also:
-
builder
-