Interface CfnVerifiedAccessGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:35.212Z")
@Stability(Stable)
public interface CfnVerifiedAccessGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVerifiedAccessGroup.
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.*;
CfnVerifiedAccessGroupProps cfnVerifiedAccessGroupProps = CfnVerifiedAccessGroupProps.builder()
.verifiedAccessInstanceId("verifiedAccessInstanceId")
// the properties below are optional
.description("description")
.policyDocument("policyDocument")
.policyEnabled(false)
.sseSpecification(SseSpecificationProperty.builder()
.customerManagedKeyEnabled(false)
.kmsKeyArn("kmsKeyArn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVerifiedAccessGroupPropsstatic final classAn implementation forCfnVerifiedAccessGroupProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for the AWS Verified Access group.default StringThe Verified Access policy document.default ObjectThe status of the Verified Access policy.default ObjectThe options for additional server side encryption.getTags()The tags.The ID of the AWS Verified Access instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVerifiedAccessInstanceId
The ID of the AWS Verified Access instance.- See Also:
-
getDescription
A description for the AWS Verified Access group.- See Also:
-
getPolicyDocument
The Verified Access policy document.- See Also:
-
getPolicyEnabled
The status of the Verified Access policy.Returns union: either
BooleanorIResolvable- See Also:
-
getSseSpecification
The options for additional server side encryption.Returns union: either
IResolvableorCfnVerifiedAccessGroup.SseSpecificationProperty- See Also:
-
getTags
The tags.- See Also:
-
builder
-