Skip to content

Domain

This class encapsulates and extends the ROS resource type ALIYUN::APIG::Domain.

Initializers

import com.aliyun.ros.cdk.apig.Domain;
Domain.Builder.create(Construct scope, java.lang.String id, java.lang.Boolean enableResourcePropertyConstraint)
    .domainName(java.lang.String)
    .domainName(IResolvable)
    .protocol(java.lang.String)
    .protocol(IResolvable)
//  .certIdentifier(java.lang.String)
//  .certIdentifier(IResolvable)
//  .forceHttps(java.lang.Boolean)
//  .forceHttps(IResolvable)
//  .gatewayType(java.lang.String)
//  .gatewayType(IResolvable)
//  .http2Option(java.lang.String)
//  .http2Option(IResolvable)
//  .resourceGroupId(java.lang.String)
//  .resourceGroupId(IResolvable)
//  .tlsCipherSuitesConfig(IResolvable)
//  .tlsCipherSuitesConfig(TlsCipherSuitesConfigProperty)
//  .tlsMax(java.lang.String)
//  .tlsMax(IResolvable)
//  .tlsMin(java.lang.String)
//  .tlsMin(IResolvable)
    .build();
Name Type Description
scope com.aliyun.ros.cdk.core.Construct No description.
id java.lang.String No description.
enableResourcePropertyConstraint java.lang.Boolean No description.
domainName java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property domainName: The name of the Domain.
protocol java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property protocol: The types of protocols supported by the domain are as follows: * HTTP: Supports only the HTTP protocol.
certIdentifier java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property certIdentifier: The tls Certificate identification.
forceHttps java.lang.Boolean OR com.aliyun.ros.cdk.core.IResolvable Property forceHttps: Set the HTTPS protocol type and whether to enable forced HTTPS redirection.
gatewayType java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property gatewayType: The type of Gateway.
http2Option java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property http2Option: Whether to enable http2 settings.
resourceGroupId java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property resourceGroupId: The ID of the resource group.
tlsCipherSuitesConfig com.aliyun.ros.cdk.core.IResolvable OR TlsCipherSuitesConfigProperty Property tlsCipherSuitesConfig: The configuration of the TLS encryption suite.
tlsMax java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property tlsMax: The maximum version of the TLS protocol.
tlsMin java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property tlsMin: The minimum version of the TLS protocol.

scopeRequired

  • Type: com.aliyun.ros.cdk.core.Construct

idRequired

  • Type: java.lang.String

enableResourcePropertyConstraintOptional

  • Type: java.lang.Boolean

domainNameRequired

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property domainName: The name of the Domain.


protocolRequired

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property protocol: The types of protocols supported by the domain are as follows: * HTTP: Supports only the HTTP protocol.

  • HTTPS: Supports only the HTTPS protocol.

certIdentifierOptional

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property certIdentifier: The tls Certificate identification.


forceHttpsOptional

  • Type: java.lang.Boolean OR com.aliyun.ros.cdk.core.IResolvable

Property forceHttps: Set the HTTPS protocol type and whether to enable forced HTTPS redirection.


gatewayTypeOptional

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property gatewayType: The type of Gateway.


http2OptionOptional

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property http2Option: Whether to enable http2 settings.


resourceGroupIdOptional

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property resourceGroupId: The ID of the resource group.


tlsCipherSuitesConfigOptional

Property tlsCipherSuitesConfig: The configuration of the TLS encryption suite.


tlsMaxOptional

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property tlsMax: The maximum version of the TLS protocol.

The maximum version of the TLS protocol is 1.3.


tlsMinOptional

  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property tlsMin: The minimum version of the TLS protocol.

The minimum version of the TLS protocol is 1.0.


Methods

Name Description
toString Returns a string representation of this construct.
synthesize Allows this construct to emit artifacts into the cloud assembly during synthesis.
addCondition No description.
addCount No description.
addDependency No description.
addResourceDesc No description.
applyRemovalPolicy No description.
fetchCondition No description.
fetchDependency No description.
fetchResourceDesc No description.
getAtt No description.
setMetadata No description.

toString

public java.lang.String toString()

Returns a string representation of this construct.

synthesize

public void synthesize(ISynthesisSession session)

Allows this construct to emit artifacts into the cloud assembly during synthesis.

This method is usually implemented by framework-level constructs such as Stack and Asset as they participate in synthesizing the cloud assembly.

sessionRequired

  • Type: com.aliyun.ros.cdk.core.ISynthesisSession

The synthesis session.


addCondition

public void addCondition(RosCondition condition)

conditionRequired

  • Type: com.aliyun.ros.cdk.core.RosCondition

addCount

public void addCount(java.lang.Number OR IResolvable count)

countRequired

  • Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable

addDependency

public void addDependency(Resource resource)

resourceRequired

  • Type: com.aliyun.ros.cdk.core.Resource

addResourceDesc

public void addResourceDesc(java.lang.String desc)

descRequired

  • Type: java.lang.String

applyRemovalPolicy

public void applyRemovalPolicy(RemovalPolicy policy)

policyRequired

  • Type: com.aliyun.ros.cdk.core.RemovalPolicy

fetchCondition

public RosCondition fetchCondition()

fetchDependency

public java.util.List<java.lang.String> fetchDependency()

fetchResourceDesc

public java.lang.String fetchResourceDesc()

getAtt

public IResolvable getAtt(java.lang.String name)

nameRequired

  • Type: java.lang.String

setMetadata

public void setMetadata(java.lang.String key, java.lang.Object value)

keyRequired

  • Type: java.lang.String

valueRequired

  • Type: java.lang.Object

Static Functions

Name Description
isConstruct Return whether the given object is a Construct.

isConstruct

import com.aliyun.ros.cdk.apig.Domain;
Domain.isConstruct(java.lang.Object x)

Return whether the given object is a Construct.

xRequired

  • Type: java.lang.Object

Properties

Name Type Description
node com.aliyun.ros.cdk.core.ConstructNode The construct tree node associated with this construct.
env com.aliyun.ros.cdk.core.IResourceEnvironment The environment this resource belongs to.
ref java.lang.String No description.
stack com.aliyun.ros.cdk.core.Stack The stack in which this resource is defined.
resource com.aliyun.ros.cdk.core.RosResource No description.
attrCertIdentifier java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute CertIdentifier: The tls Certificate identification.
attrDomainId java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute DomainId: The ID of the Domain.
attrDomainName java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute DomainName: The name of the Domain.
attrForceHttps java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute ForceHttps: Set the HTTPS protocol type and whether to enable forced HTTPS redirection.
attrHttp2Option java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute Http2Option: Whether to enable http2 settings.
attrProtocol java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute Protocol: The types of protocols.
attrResourceGroupId java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute ResourceGroupId: The ID of the resource group.
attrTlsCipherSuitesConfig java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute TlsCipherSuitesConfig: The configuration of the TLS encryption suite.
attrTlsMax java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute TlsMax: The maximum version of the TLS protocol.
attrTlsMin java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Attribute TlsMin: The minimum version of the TLS protocol.
props DomainProps No description.

nodeRequired

public ConstructNode getNode();
  • Type: com.aliyun.ros.cdk.core.ConstructNode

The construct tree node associated with this construct.


envRequired

public IResourceEnvironment getEnv();
  • Type: com.aliyun.ros.cdk.core.IResourceEnvironment

The environment this resource belongs to.

For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.


refRequired

public java.lang.String getRef();
  • Type: java.lang.String

stackRequired

public Stack getStack();
  • Type: com.aliyun.ros.cdk.core.Stack

The stack in which this resource is defined.


resourceOptional

public RosResource getResource();
  • Type: com.aliyun.ros.cdk.core.RosResource

attrCertIdentifierRequired

public java.lang.Object getAttrCertIdentifier();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute CertIdentifier: The tls Certificate identification.


attrDomainIdRequired

public java.lang.Object getAttrDomainId();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute DomainId: The ID of the Domain.


attrDomainNameRequired

public java.lang.Object getAttrDomainName();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute DomainName: The name of the Domain.


attrForceHttpsRequired

public java.lang.Object getAttrForceHttps();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute ForceHttps: Set the HTTPS protocol type and whether to enable forced HTTPS redirection.


attrHttp2OptionRequired

public java.lang.Object getAttrHttp2Option();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute Http2Option: Whether to enable http2 settings.


attrProtocolRequired

public java.lang.Object getAttrProtocol();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute Protocol: The types of protocols.


attrResourceGroupIdRequired

public java.lang.Object getAttrResourceGroupId();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute ResourceGroupId: The ID of the resource group.


attrTlsCipherSuitesConfigRequired

public java.lang.Object getAttrTlsCipherSuitesConfig();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute TlsCipherSuitesConfig: The configuration of the TLS encryption suite.


attrTlsMaxRequired

public java.lang.Object getAttrTlsMax();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute TlsMax: The maximum version of the TLS protocol.

The maximum version of the TLS protocol is 1.3.


attrTlsMinRequired

public java.lang.Object getAttrTlsMin();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Attribute TlsMin: The minimum version of the TLS protocol.

The minimum version of the TLS protocol is 1.0.


propsRequired

public DomainProps getProps();