Interface CfnVerifiedAccessGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.206Z")
@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) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVerifiedAccessGroupProps
static final class
An implementation forCfnVerifiedAccessGroupProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVerifiedAccessInstanceId
The ID of the AWS Verified Access instance. -
getDescription
A description for the AWS Verified Access group. -
getPolicyDocument
The Verified Access policy document. -
getPolicyEnabled
The status of the Verified Access policy. -
getTags
The tags. -
builder
-