Class AppEngineDomainMappingSslSettings.Builder
- java.lang.Object
-
- com.hashicorp.cdktf.providers.google.app_engine_domain_mapping.AppEngineDomainMappingSslSettings.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<AppEngineDomainMappingSslSettings>
- Enclosing interface:
- AppEngineDomainMappingSslSettings
@Stability(Stable) public static final class AppEngineDomainMappingSslSettings.Builder extends Object implements software.amazon.jsii.Builder<AppEngineDomainMappingSslSettings>
A builder forAppEngineDomainMappingSslSettings
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppEngineDomainMappingSslSettingsbuild()Builds the configured instance.AppEngineDomainMappingSslSettings.BuildercertificateId(String certificateId)Sets the value ofAppEngineDomainMappingSslSettings.getCertificateId()AppEngineDomainMappingSslSettings.BuildersslManagementType(String sslManagementType)Sets the value ofAppEngineDomainMappingSslSettings.getSslManagementType()
-
-
-
Method Detail
-
sslManagementType
@Stability(Stable) public AppEngineDomainMappingSslSettings.Builder sslManagementType(String sslManagementType)
Sets the value ofAppEngineDomainMappingSslSettings.getSslManagementType()- Parameters:
sslManagementType- SSL management type for this domain. This parameter is required. If 'AUTOMATIC', a managed certificate is automatically provisioned. If 'MANUAL', 'certificateId' must be manually specified in order to configure SSL for this domain. Possible values: ["AUTOMATIC", "MANUAL"] Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/app_engine_domain_mapping#ssl_management_type AppEngineDomainMapping#ssl_management_type}- Returns:
this
-
certificateId
@Stability(Stable) public AppEngineDomainMappingSslSettings.Builder certificateId(String certificateId)
Sets the value ofAppEngineDomainMappingSslSettings.getCertificateId()- Parameters:
certificateId- ID of the AuthorizedCertificate resource configuring SSL for the application. Clearing this field will remove SSL support. By default, a managed certificate is automatically created for every domain mapping. To omit SSL support or to configure SSL manually, specify 'SslManagementType.MANUAL' on a 'CREATE' or 'UPDATE' request. You must be authorized to administer the 'AuthorizedCertificate' resource to manually map it to a DomainMapping resource. Example: 12345. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/app_engine_domain_mapping#certificate_id AppEngineDomainMapping#certificate_id}- Returns:
this
-
build
@Stability(Stable) public AppEngineDomainMappingSslSettings build()
Builds the configured instance.- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<AppEngineDomainMappingSslSettings>- Returns:
- a new instance of
AppEngineDomainMappingSslSettings - Throws:
NullPointerException- if any required attribute was not provided
-
-