Interface AppEngineDomainMappingSslSettings
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppEngineDomainMappingSslSettings.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:17.434Z") @Stability(Stable) public interface AppEngineDomainMappingSslSettings extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAppEngineDomainMappingSslSettings.BuilderA builder forAppEngineDomainMappingSslSettingsstatic classAppEngineDomainMappingSslSettings.Jsii$ProxyAn implementation forAppEngineDomainMappingSslSettings
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static AppEngineDomainMappingSslSettings.Builderbuilder()default StringgetCertificateId()ID of the AuthorizedCertificate resource configuring SSL for the application.StringgetSslManagementType()SSL management type for this domain.
-
-
-
Method Detail
-
getSslManagementType
@Stability(Stable) @NotNull String getSslManagementType()
SSL management type for this domain.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}
-
getCertificateId
@Stability(Stable) @Nullable default String getCertificateId()
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}
-
builder
@Stability(Stable) static AppEngineDomainMappingSslSettings.Builder builder()
-
-