Class CfnVerifiedAccessInstance
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.ec2.CfnVerifiedAccessInstance
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-11T23:26:32.311Z")
@Stability(Stable)
public class CfnVerifiedAccessInstance
extends CfnResource
implements IInspectable, ITaggable
An AWS Verified Access instance is a regional entity that evaluates application requests and grants access only when your security requirements are met.
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.*; CfnVerifiedAccessInstance cfnVerifiedAccessInstance = CfnVerifiedAccessInstance.Builder.create(this, "MyCfnVerifiedAccessInstance") .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 TypeClassDescriptionstatic final class
A fluent builder forCfnVerifiedAccessInstance
.static interface
Options for CloudWatch Logs as a logging destination.static interface
Options for Kinesis as a logging destination.static interface
Options for Amazon S3 as a logging destination.static interface
Describes the options for Verified Access logs.static interface
A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnVerifiedAccessInstance
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnVerifiedAccessInstance
(software.amazon.jsii.JsiiObjectRef objRef) CfnVerifiedAccessInstance
(software.constructs.Construct scope, String id) CfnVerifiedAccessInstance
(software.constructs.Construct scope, String id, CfnVerifiedAccessInstanceProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe creation time.The last updated time.The ID of the Verified Access instance.A description for the AWS Verified Access instance.Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.The logging configuration for the Verified Access instances.getTags()
Tag Manager which manages the tags for this resource.The tags.The IDs of the AWS Verified Access trust providers.The IDs of the AWS Verified Access trust providers.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDescription
(String value) A description for the AWS Verified Access instance.void
setFipsEnabled
(Boolean value) Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.void
setFipsEnabled
(IResolvable value) Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.void
The logging configuration for the Verified Access instances.void
The logging configuration for the Verified Access instances.void
setTagsRaw
(List<CfnTag> value) The tags.void
The IDs of the AWS Verified Access trust providers.void
The IDs of the AWS Verified Access trust providers.void
The IDs of the AWS Verified Access trust providers.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnVerifiedAccessInstance
protected CfnVerifiedAccessInstance(software.amazon.jsii.JsiiObjectRef objRef) -
CfnVerifiedAccessInstance
protected CfnVerifiedAccessInstance(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnVerifiedAccessInstance
@Stability(Stable) public CfnVerifiedAccessInstance(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnVerifiedAccessInstanceProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties.
-
CfnVerifiedAccessInstance
@Stability(Stable) public CfnVerifiedAccessInstance(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrCreationTime
The creation time. -
getAttrLastUpdatedTime
The last updated time. -
getAttrVerifiedAccessInstanceId
The ID of the Verified Access instance. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getDescription
A description for the AWS Verified Access instance. -
setDescription
A description for the AWS Verified Access instance. -
getFipsEnabled
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance. -
setFipsEnabled
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance. -
setFipsEnabled
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance. -
getLoggingConfigurations
The logging configuration for the Verified Access instances. -
setLoggingConfigurations
The logging configuration for the Verified Access instances. -
setLoggingConfigurations
@Stability(Stable) public void setLoggingConfigurations(@Nullable CfnVerifiedAccessInstance.VerifiedAccessLogsProperty value) The logging configuration for the Verified Access instances. -
getTagsRaw
The tags. -
setTagsRaw
The tags. -
getVerifiedAccessTrustProviderIds
The IDs of the AWS Verified Access trust providers. -
setVerifiedAccessTrustProviderIds
The IDs of the AWS Verified Access trust providers. -
getVerifiedAccessTrustProviders
The IDs of the AWS Verified Access trust providers. -
setVerifiedAccessTrustProviders
The IDs of the AWS Verified Access trust providers. -
setVerifiedAccessTrustProviders
The IDs of the AWS Verified Access trust providers.
-