Interface CfnMailManagerIngressPointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerIngressPointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:48.871Z")
@Stability(Stable)
public interface CfnMailManagerIngressPointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMailManagerIngressPoint.
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.ses.*;
CfnMailManagerIngressPointProps cfnMailManagerIngressPointProps = CfnMailManagerIngressPointProps.builder()
.ruleSetId("ruleSetId")
.trafficPolicyId("trafficPolicyId")
.type("type")
// the properties below are optional
.ingressPointConfiguration(IngressPointConfigurationProperty.builder()
.secretArn("secretArn")
.smtpPassword("smtpPassword")
.build())
.ingressPointName("ingressPointName")
.networkConfiguration(NetworkConfigurationProperty.builder()
.privateNetworkConfiguration(PrivateNetworkConfigurationProperty.builder()
.vpcEndpointId("vpcEndpointId")
.build())
.publicNetworkConfiguration(PublicNetworkConfigurationProperty.builder()
.ipType("ipType")
.build())
.build())
.statusToUpdate("statusToUpdate")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerIngressPointPropsstatic final classAn implementation forCfnMailManagerIngressPointProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe configuration of the ingress endpoint resource.default StringA user friendly name for an ingress endpoint resource.default ObjectThe network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.The identifier of an existing rule set that you attach to an ingress endpoint resource.default StringThe update status of an ingress endpoint.getTags()The tags used to organize, track, or control access for the resource.The identifier of an existing traffic policy that you attach to an ingress endpoint resource.getType()The type of the ingress endpoint to create.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRuleSetId
The identifier of an existing rule set that you attach to an ingress endpoint resource.- See Also:
-
getTrafficPolicyId
The identifier of an existing traffic policy that you attach to an ingress endpoint resource.- See Also:
-
getType
The type of the ingress endpoint to create.- See Also:
-
getIngressPointConfiguration
The configuration of the ingress endpoint resource.Returns union: either
IResolvableorCfnMailManagerIngressPoint.IngressPointConfigurationProperty- See Also:
-
getIngressPointName
A user friendly name for an ingress endpoint resource.- See Also:
-
getNetworkConfiguration
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.Returns union: either
IResolvableorCfnMailManagerIngressPoint.NetworkConfigurationProperty- See Also:
-
getStatusToUpdate
The update status of an ingress endpoint.- See Also:
-
getTags
The tags used to organize, track, or control access for the resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
-