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="2024-11-06T23:25:08.488Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVerifiedAccessInstancePropsstatic final classAn implementation forCfnVerifiedAccessInstanceProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()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
-
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
-