Interface CfnVerifiedAccessInstanceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessInstanceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-07T10:36:05.761Z")
@Stability(Stable)
public interface CfnVerifiedAccessInstanceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVerifiedAccessInstance
.
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.*; CfnVerifiedAccessInstanceProps cfnVerifiedAccessInstanceProps = CfnVerifiedAccessInstanceProps.builder() .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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVerifiedAccessInstanceProps
static final class
An implementation forCfnVerifiedAccessInstanceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A description for the AWS Verified Access instance.default Object
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.default Object
The logging configuration for the Verified Access instances.getTags()
The tags.The IDs of the AWS Verified Access trust providers.default Object
The IDs of the AWS Verified Access trust providers.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.- See Also:
-
getLoggingConfigurations
The logging configuration for the Verified Access instances.- 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.- See Also:
-
builder
-