Interface CfnVerifiedAccessInstanceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessInstanceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.798Z")
@Stability(Stable)
public interface CfnVerifiedAccessInstanceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVerifiedAccessInstancePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
CfnVerifiedAccessInstanceMixinProps cfnVerifiedAccessInstanceMixinProps = CfnVerifiedAccessInstanceMixinProps.builder()
.cidrEndpointsCustomSubDomain("cidrEndpointsCustomSubDomain")
.description("description")
.fipsEnabled(false)
.loggingConfigurations(VerifiedAccessLogsProperty.builder()
.cloudWatchLogs(CloudWatchLogsProperty.builder()
.enabled(false)
.logGroup("logGroup")
.build())
.includeTrustContext(false)
.kinesisDataFirehose(KinesisDataFirehoseProperty.builder()
.deliveryStream("deliveryStream")
.enabled(false)
.build())
.logVersion("logVersion")
.s3(S3Property.builder()
.bucketName("bucketName")
.bucketOwner("bucketOwner")
.enabled(false)
.prefix("prefix")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.verifiedAccessTrustProviderIds(List.of("verifiedAccessTrustProviderIds"))
.verifiedAccessTrustProviders(List.of(VerifiedAccessTrustProviderProperty.builder()
.description("description")
.deviceTrustProviderType("deviceTrustProviderType")
.trustProviderType("trustProviderType")
.userTrustProviderType("userTrustProviderType")
.verifiedAccessTrustProviderId("verifiedAccessTrustProviderId")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVerifiedAccessInstanceMixinPropsstatic final classAn implementation forCfnVerifiedAccessInstanceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe custom subdomain.default StringA description for the AWS Verified Access instance.default ObjectIndicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.default ObjectThe logging configuration for the Verified Access instances.getTags()The tags.The IDs of the AWS Verified Access trust providers.default ObjectThe IDs of the AWS Verified Access trust providers.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCidrEndpointsCustomSubDomain
The custom subdomain.- See Also:
-
getDescription
A description for the AWS Verified Access instance.- See Also:
-
getFipsEnabled
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.Returns union: either
BooleanorIResolvable- See Also:
-
getLoggingConfigurations
The logging configuration for the Verified Access instances.Returns union: either
IResolvableorCfnVerifiedAccessInstancePropsMixin.VerifiedAccessLogsProperty- See Also:
-
getTags
The tags.- See Also:
-
getVerifiedAccessTrustProviderIds
The IDs of the AWS Verified Access trust providers.- See Also:
-
getVerifiedAccessTrustProviders
The IDs of the AWS Verified Access trust providers.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnVerifiedAccessInstancePropsMixin.VerifiedAccessTrustProviderProperty>- See Also:
-
builder
-