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
    • 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}