Interface CfnConnectorV2Props
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorV2Props.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:45.480Z")
@Stability(Stable)
public interface CfnConnectorV2Props
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConnectorV2.
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.securityhub.*;
CfnConnectorV2Props cfnConnectorV2Props = CfnConnectorV2Props.builder()
.name("name")
.provider(ProviderProperty.builder()
.jiraCloud(JiraCloudProperty.builder()
.projectKey("projectKey")
// the properties below are optional
.authStatus("authStatus")
.authUrl("authUrl")
.cloudId("cloudId")
.domain("domain")
.build())
.serviceNow(ServiceNowProperty.builder()
.instanceName("instanceName")
.secretArn("secretArn")
// the properties below are optional
.authStatus("authStatus")
.build())
.build())
// the properties below are optional
.description("description")
.kmsKeyArn("kmsKeyArn")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorV2Propsstatic final classAn implementation forCfnConnectorV2Props -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConnectorV2Props.Builderbuilder()default StringA description of the connector.default StringThe ARN of KMS key used for the connector.getName()The name of the connector.The provider configuration of the connector.getTags()A key-value pair to associate with a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the connector.- See Also:
-
getProvider
The provider configuration of the connector.Returns union: either
IResolvableorCfnConnectorV2.ProviderProperty- See Also:
-
getDescription
A description of the connector.- See Also:
-
getKmsKeyArn
The ARN of KMS key used for the connector.- See Also:
-
getTags
A key-value pair to associate with a resource.- See Also:
-
builder
- Returns:
- a
CfnConnectorV2Props.BuilderofCfnConnectorV2Props
-