Interface CfnMailManagerIngressPointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerIngressPointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.529Z")
@Stability(Stable)
public interface CfnMailManagerIngressPointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMailManagerIngressPointPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
CfnMailManagerIngressPointMixinProps cfnMailManagerIngressPointMixinProps = CfnMailManagerIngressPointMixinProps.builder()
.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())
.ruleSetId("ruleSetId")
.statusToUpdate("statusToUpdate")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.trafficPolicyId("trafficPolicyId")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerIngressPointMixinPropsstatic final classAn implementation forCfnMailManagerIngressPointMixinProps -
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.default StringThe 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.default StringThe identifier of an existing traffic policy that you attach to an ingress endpoint resource.default StringgetType()The type of the ingress endpoint to create.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIngressPointConfiguration
The configuration of the ingress endpoint resource.Returns union: either
IResolvableorCfnMailManagerIngressPointPropsMixin.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
IResolvableorCfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty- See Also:
-
getRuleSetId
The identifier of an existing rule set that you attach to an ingress endpoint resource.- 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:
-
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:
-
builder
-