Class CfnConnector

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, IEnvironmentAware, IConnectorRef, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:11.673Z") @Stability(Stable) public class CfnConnector extends CfnResource implements IInspectable, IConnectorRef, ITaggableV2
Creates and manages a multi-cloud connector for Amazon Inspector, enabling vulnerability scanning of Azure resources.

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.inspectorv2.*;
 CfnConnector cfnConnector = CfnConnector.Builder.create(this, "MyCfnConnector")
         .name("name")
         .provider("provider")
         .providerConfiguration(ProviderConfigurationProperty.builder()
                 .azure(AzureProviderConfigurationProperty.builder()
                         .awsConfigConnectorArn("awsConfigConnectorArn")
                         .azureRegions(List.of("azureRegions"))
                         .scopeConfiguration(AzureScopeConfigurationMapProperty.builder()
                                 .containerImageScanning(ScopeConfigurationProperty.builder()
                                         .scopeType("scopeType")
                                         // the properties below are optional
                                         .scopeValues(List.of("scopeValues"))
                                         .state("state")
                                         .stateReason("stateReason")
                                         .build())
                                 .serverlessScanning(ScopeConfigurationProperty.builder()
                                         .scopeType("scopeType")
                                         // the properties below are optional
                                         .scopeValues(List.of("scopeValues"))
                                         .state("state")
                                         .stateReason("stateReason")
                                         .build())
                                 .vmScanning(ScopeConfigurationProperty.builder()
                                         .scopeType("scopeType")
                                         // the properties below are optional
                                         .scopeValues(List.of("scopeValues"))
                                         .state("state")
                                         .stateReason("stateReason")
                                         .build())
                                 .build())
                         // the properties below are optional
                         .autoInstallVmScanner(false)
                         .build())
                 .build())
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnConnector

      protected CfnConnector(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnConnector

      protected CfnConnector(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnConnector

      @Stability(Stable) public CfnConnector(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnConnectorProps props)
      Create a new AWS::InspectorV2::Connector.

      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. This parameter is required.
  • Method Details

    • arnForConnector

      @Stability(Stable) @NotNull public static String arnForConnector(@NotNull IConnectorRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnConnector

      @Stability(Stable) @NotNull public static Boolean isCfnConnector(@NotNull Object x)
      Checks whether the given object is a CfnConnector.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      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 class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrConnectorArn

      @Stability(Stable) @NotNull public String getAttrConnectorArn()
      The Amazon Resource Name (ARN) of the connector.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      Timestamp when the connector was created.
    • getAttrEnablementStatus

      @Stability(Stable) @NotNull public String getAttrEnablementStatus()
    • getAttrEnablementStatusReason

      @Stability(Stable) @NotNull public String getAttrEnablementStatusReason()
      Reason for the current enablement status, if applicable.
    • getAttrHealth

      @Stability(Stable) @NotNull public IResolvable getAttrHealth()
    • getAttrLastUpdatedAt

      @Stability(Stable) @NotNull public String getAttrLastUpdatedAt()
      Timestamp when the connector was last updated.
    • getAttrProviderConfigurationAzureScopeConfigurationContainerImageScanningState

      @Stability(Stable) @NotNull public String getAttrProviderConfigurationAzureScopeConfigurationContainerImageScanningState()
    • getAttrProviderConfigurationAzureScopeConfigurationContainerImageScanningStateReason

      @Stability(Stable) @NotNull public String getAttrProviderConfigurationAzureScopeConfigurationContainerImageScanningStateReason()
      Reason for the current scope state.
    • getAttrProviderConfigurationAzureScopeConfigurationServerlessScanningState

      @Stability(Stable) @NotNull public String getAttrProviderConfigurationAzureScopeConfigurationServerlessScanningState()
    • getAttrProviderConfigurationAzureScopeConfigurationServerlessScanningStateReason

      @Stability(Stable) @NotNull public String getAttrProviderConfigurationAzureScopeConfigurationServerlessScanningStateReason()
      Reason for the current scope state.
    • getAttrProviderConfigurationAzureScopeConfigurationVmScanningState

      @Stability(Stable) @NotNull public String getAttrProviderConfigurationAzureScopeConfigurationVmScanningState()
    • getAttrProviderConfigurationAzureScopeConfigurationVmScanningStateReason

      @Stability(Stable) @NotNull public String getAttrProviderConfigurationAzureScopeConfigurationVmScanningStateReason()
      Reason for the current scope state.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getConnectorRef

      @Stability(Stable) @NotNull public ConnectorReference getConnectorRef()
      A reference to a Connector resource.
      Specified by:
      getConnectorRef in interface IConnectorRef
    • getName

      @Stability(Stable) @NotNull public String getName()
      Display name for the connector.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      Display name for the connector.
    • getProvider

      @Stability(Stable) @NotNull public String getProvider()
    • setProvider

      @Stability(Stable) public void setProvider(@NotNull String value)
    • getProviderConfiguration

      @Stability(Stable) @NotNull public Object getProviderConfiguration()
    • setProviderConfiguration

      @Stability(Stable) public void setProviderConfiguration(@NotNull IResolvable value)
    • setProviderConfiguration

      @Stability(Stable) public void setProviderConfiguration(@NotNull CfnConnector.ProviderConfigurationProperty value)
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      Optional description of the connector.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      Optional description of the connector.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      Tags to apply to the connector.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      Tags to apply to the connector.